What's the 'right' way to tell if an object is an Array?
function isArray(o) { ??? }
|
|
The best way:
The ECMAScript 5th Edition Specification defines a method for that, and some browsers, like Firefox 3.7alpha, Chrome 5 Beta, and latest WebKit Nightly builds already provide a native implementation, so you might want to implement it if not available:
|
|||||||||||||
|
|
You should be able to use the
|
|||||
|
|
This is what I use:
|
|||
|
|
|
|||
|
|
|
You can take take Prototype library definition of method Object.isArray() which test it :
|
|||