Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. let Test = function(name) {
  2. this.name = name;
  3. this.complete = function() {
  4. console.log(`completing task${this.name}`)
  5. }
  6. }
  7.  
  8. let Test = function(name) {
  9. this.name = name;
  10. }
  11.  
  12. Test.prototype.complete = function() {
  13. console.log(`completing task${this.name}`)
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement