Skip to content

Instantly share code, notes, and snippets.

@ceme
Created December 6, 2012 20:30
Show Gist options
  • Save ceme/4228057 to your computer and use it in GitHub Desktop.
Save ceme/4228057 to your computer and use it in GitHub Desktop.
Javascript usage of hasOwnProperty
var o = {};
o.prop = "here i is";
o.hasOwnProperty("prop"); //true
var z = {x:"x", y:"y"};
z.hasOwnProperty("x"); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment