Skip to content

Instantly share code, notes, and snippets.

@daxxog
Created December 27, 2012 18:35
Show Gist options
  • Save daxxog/4390725 to your computer and use it in GitHub Desktop.
Save daxxog/4390725 to your computer and use it in GitHub Desktop.
isArray function for javascript
var isArray = function(obj) {
return (typeof obj == 'object') && (obj instanceof Array);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment