Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 18, 2019 14:51
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/4c14fbda6c0995ac744d51f53acb3f15 to your computer and use it in GitHub Desktop.
Save codecademydev/4c14fbda6c0995ac744d51f53acb3f15 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[propName]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment