Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. const wilder={
  2. name : 'Sylene',
  3. city: 'Arbonne',
  4. age: 30,
  5. isLearningJs: true
  6. }
  7.  
  8. console.log(wilder.hasOwnProperty('name'));
  9. console.log(wilder.has('isLearningPhp')('isLearningPhp')('isLearningPhp')OwnProperty('isLearningPhp'));
  10. console.log(wilder.hasOwnProperty('isLearningJs'));
  11.  
  12. wilder.knowsHtml = true;
  13. wilder.knowsCss = true;
  14. console.log(wilder);
  15. wilder.hobbies = ["skate", "drugs", "rock'n'roll"];
  16. console.log(wilder.hobbies[1]);
  17.  
  18. delete wilder.name
  19.  
  20. console.log(wilder)
  21.  
  22. wilder.lastName='guiberteau'
  23. wilder.firstName='jean-maxime'
  24.  
  25. console.log(wilder)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement