Guest User

Untitled

a guest
May 20th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. var o = {
  2. x:1
  3. };
  4.  
  5. var two = Object.create(o);
  6.  
  7. console.log("o " + o.x); // => 1
  8. console.log("two " + two.x); // => 1
  9.  
  10. o.x = 2;
  11.  
  12. console.log("o " + o.x); // => 2
  13. console.log("two " + two.x); // => 2
  14.  
  15. two.x = 3;
  16.  
  17. console.log("o " + o.x); // => 2
  18. console.log("two " + two.x); // => 3
Add Comment
Please, Sign In to add comment