Skip to content

Instantly share code, notes, and snippets.

@conanak99
Created January 13, 2016 15:26
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 conanak99/4890d2f650b3b96e5ae5 to your computer and use it in GitHub Desktop.
Save conanak99/4890d2f650b3b96e5ae5 to your computer and use it in GitHub Desktop.
var person = {
firstName: 'Hoang',
lastName: 'Pham',
showName: function() {
console.log(this.firstName + ' ' + this.lastName);
}
};
for(var prop in person) {
console.log(prop); // firstName, lastName, showName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment