changing Objects properties

PHOTO EMBED

Tue Jun 28 2022 19:04:10 GMT+0000 (Coordinated Universal Time)

Saved by @cruz #javascript

let spaceship = {
  'Fuel Type' : 'Turbo Fuel',
  homePlanet : 'Earth',
  color: 'silver',
  'Secret Mission' : 'Discover life outside of Earth.'
};

// Write your code below

spaceship.color = 'glorious gold';

spaceship.numEngines = 9;

delete spaceship['Secret Mission'];
content_copyCOPY

https://www.codecademy.com/courses/introduction-to-javascript/lessons/objects/exercises/add-property