Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var vanillaCake = Object.create(Object.prototype,
  2. {
  3. type: {
  4. value: 'Butter',
  5. enumerable: true,
  6. writable: true,
  7. configurable: true
  8. },
  9. flavor: {
  10. value: 'Vanilla',
  11. enumerable: true,
  12. writable: true,
  13. configurable: true
  14. }
  15. }
  16. );
  17. console.log(vanillaCake);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement