Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 292 Bytes

programming-clapbacks.md

File metadata and controls

24 lines (20 loc) · 292 Bytes

function yoMama(name){ this.name = name;

return this.name

}

yoMama.prototype = { fat: function(weight){ return weight > 100 }, old: function(age){ return age > 100 } ugly: function(mirror){ var ugly = false if(!mirror){ ugly = true; return ugly } return ugly }

}