Skip to content

Instantly share code, notes, and snippets.

@mannuelf
Created August 3, 2014 00:44
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 mannuelf/6c12b83547acefae3c4a to your computer and use it in GitHub Desktop.
Save mannuelf/6c12b83547acefae3c4a to your computer and use it in GitHub Desktop.
hasOwnPoperty
var suitcase = {
shirt: "Hawaiian"
};
if(suitcase.hasOwnProperty("shorts")){
console.log(suitcase.shorts);
}
else {
suitcase.shorts = "Denim";
console.log(suitcase.shorts);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment