Skip to content

Instantly share code, notes, and snippets.

@jimeh
Created March 15, 2010 00:02
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save jimeh/332357 to your computer and use it in GitHub Desktop.
Save jimeh/332357 to your computer and use it in GitHub Desktop.
Cross-browser hasOwnProperty solution
/*
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