Advertisement
nikolayneykov

Untitled

May 29th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Cat (name) {
  2.   this.name = name
  3. }
  4.  
  5. let myCat = {}
  6. Cat.call(myCat, 'ivan')
  7. console.log(myCat)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement