Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 8, 2016 02:08
Show Gist options
  • Save codecademydev/08b2dba9b55d57265048a23809953882 to your computer and use it in GitHub Desktop.
Save codecademydev/08b2dba9b55d57265048a23809953882 to your computer and use it in GitHub Desktop.
Codecademy export
var spencer = {
age: 22,
country: "United States"
};
// make spencer2 here with constructor notation
var spencer2 = new Object();
spencer2.age = 22;
spencer2.country = "United States";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment