Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 12, 2016 02:12
Show Gist options
  • Save codecademydev/3956cb2576e357889c7d30e533fdcf06 to your computer and use it in GitHub Desktop.
Save codecademydev/3956cb2576e357889c7d30e533fdcf06 to your computer and use it in GitHub Desktop.
Codecademy export
function Person(job, married) {
this.job = job;
this.married = married;
this.speak = function() {
console.log("Hello!");
};// add a "speak" method to Person!
}
var user = new Person("Codecademy Student",false);
user.speak();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment