Skip to content

Instantly share code, notes, and snippets.

@codenamejason
Last active August 29, 2015 14:16
Show Gist options
  • Save codenamejason/0659dc00647d801fa693 to your computer and use it in GitHub Desktop.
Save codenamejason/0659dc00647d801fa693 to your computer and use it in GitHub Desktop.
Is it an array?
var isArray = function(value) {
return value && typeof value === 'object' && value.constructor === Array;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment