Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Douglas.Sesar

Douglas.Sesar

Douglas.Sesar has asked 5 questions and find answers to 15 problems.

Stats

270
EtPoint
69
Vote count
5
questions
15
answers

About

var experience = 'novice'; var reason = 'It pays the bills.'; var Coding = function(reason){ this.reason = reason; }

    Coding.prototype.getProfitable = function(){
         return this.reason + '  And now I can do it for fun.';
    }
    var someday = new Coding(reason);
    alert(someday.getProfitable());