Advertisement
Guest User

Untitled

a guest
May 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var clas3s = new test();
  2.  
  3. console.log(clas3s.name) // работает
  4. clas3s.open() // не работает
  5.  
  6. function test() {
  7.     this.name = 'Test';
  8. }
  9.  
  10. test.prototype.open = function() {
  11.     console.log(this.name)
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement