Skip to content

Instantly share code, notes, and snippets.

@georgybu
Forked from jimeh/hasOwnProperty.js
Created August 9, 2013 21:07
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 georgybu/6197210 to your computer and use it in GitHub Desktop.
Save georgybu/6197210 to your computer and use it in GitHub Desktop.
/*
Cross-browser hasOwnProperty solution, based on answers from:
http://stackoverflow.com/questions/135448/how-do-i-check-to-see-if-an-object-has-an-attribute-in-javascript
*/
if ( !Object.prototype.hasOwnProperty ) {
Object.prototype.hasOwnProperty = function(prop) {
var proto = obj.__proto__ || obj.constructor.prototype;
return (prop in this) && (!(prop in proto) || proto[prop] !== this[prop]);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment