Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 12, 2016 02:14
Show Gist options
  • Save codecademydev/8755c2772021e9b92785c557a67b2647 to your computer and use it in GitHub Desktop.
Save codecademydev/8755c2772021e9b92785c557a67b2647 to your computer and use it in GitHub Desktop.
Codecademy export
var james = {
job: "programmer",
married: false,
sayJob: function() {
console.log("Hi, I work as a " + this.job); // complete this method
}
};
// james' first job
james.sayJob();
// change james' job to "super programmer" here
james.job = "super programmer";
// james' second job
james.sayJob();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment