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

Douglas.Sesar

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

Stats

215
EtPoint
55
Vote count
5
questions
12
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());