Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 12, 2016 02:13
Show Gist options
  • Save codecademydev/23ba0c93227cc7adc8d1d3251b0690e7 to your computer and use it in GitHub Desktop.
Save codecademydev/23ba0c93227cc7adc8d1d3251b0690e7 to your computer and use it in GitHub Desktop.
Codecademy export
var james = {
job: "programmer",
married: false,
speak: function( mood ) {
console.log("Hello, I am feeling " + mood );
}
};
james.speak("great");
james.speak("just okay");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment