vote up 2 vote down star
2

I thought this would be as easy as:

if(typeof(Array.push) == 'undefined'){
  //not defined, prototype a version of the push method
  // Firefox never gets here, but IE/Safari/Chrome/etc. do, even though
  // the Array object has a push method!
}

And it does work fine in Firefox, but not in IE, Chrome, Safari, Opera, they return all properties/methods of the native Array object as 'undefined' using this test.

The .hasOwnProperty( prop ) method only works on instances... so it doesn't work, but by trial and error I noticed that this works.

//this works in Firefox/IE(6,7,8)/Chrome/Safari/Opera
if(typeof(Array().push) == 'undefined'){
  //not defined, prototype a version of the push method
}

Is there anything wrong with using this syntax to determine if a property/method exists on a Native Object / ~"JavaScript Class"~, or is there a better way to do this?

flag

60% accept rate

3 Answers

vote up 8 vote down check

First of all, typeof is an operator, not a function, so you don't need the parentheses. Secondly, access the object's prototype.

alert( typeof Array.prototype.push );
alert( typeof Array.prototype.foo );

When you execute typeof Array.push you are testing if the Array object itself has a push method, not if instances of Array have a push method.

link|flag
Interesting... I read that .prototype was only for adding new properties/methods to objects, I didn't think to use typeof on it. e.g. prototype devguru.com/technologies/JavaScript/… typeof devguru.com/technologies/JavaScript/… – scunliffe Feb 27 at 18:41
It's for that, yes, but not ONLY for that. I recommend watching Douglas Crockford's presentation on "Advanced Javascript" in the YUI Theater (developer.yahoo.com/yui/theater) - there's some great "under the hood" stuff there, including how object prototypes work. – Peter Bailey Feb 27 at 19:53
vote up -1 vote down

Here is a simpler way:

if (Array.push) { }
link|flag
That still exhibits the same problem as the original question in that it is checking for a property on the constructor function, not an instance or the protoype. “if ([].push)” would work. – bobince Feb 27 at 17:50
vote up 0 vote down

And it does work fine in Firefox

That's only by coincidence! You can't generally expect a prototype's method to also exist on the constructor function.

if(typeof(Array().push) == 'undefined')

This was nearly right except you forget ‘new’, a perennial JavaScript gotcha. “new Array().push”, or “[].push” for short, would correctly check an instance had the method you wanted.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.