Skip to content

Instantly share code, notes, and snippets.

@leosuncin
Created April 8, 2015 22:32
Show Gist options
  • Save leosuncin/9da07d11360c4ae6bd6c to your computer and use it in GitHub Desktop.
Save leosuncin/9da07d11360c4ae6bd6c to your computer and use it in GitHub Desktop.
if (!Array.isArray) {
  Array.isArray = function(arg) {
    return Object.prototype.toString.call(arg) === '[object Array]';
  };
}

or obj instanceof Array

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment