Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 18, 2019 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/219b393e0aff9eed27fc3f1dd20a10ea to your computer and use it in GitHub Desktop.
Save codecademydev/219b393e0aff9eed27fc3f1dd20a10ea to your computer and use it in GitHub Desktop.
Codecademy export
let spaceship = {
'Fuel Type' : 'Turbo Fuel',
'Active Mission' : true,
homePlanet : 'Earth',
numCrew: 5
};
let propName = 'Active Mission';
// Write your code below
let isActive = spaceship['Active Mission'];
console.log(spaceship['Active Mission']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment