benjaminvr

Codecademy - Interacting w/ obj

Oct 3rd, 2021
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let spaceship = {
  2.   'Fuel Type' : 'Turbo Fuel',
  3.   homePlanet : 'Earth',
  4.   color: 'silver',
  5.   'Secret Mission' : 'Discover life outside of Earth.'
  6. };
  7.  
  8. spaceship.color = 'glorious gold';
  9. spaceship.numEngines = 7;
  10. delete spaceship['Secret Mission'];
Advertisement
Add Comment
Please, Sign In to add comment