Skip to content

Instantly share code, notes, and snippets.

@noyobo
Last active December 19, 2015 23:59
Show Gist options
  • Save noyobo/6037939 to your computer and use it in GitHub Desktop.
Save noyobo/6037939 to your computer and use it in GitHub Desktop.
Array.isArray 数组判断
if(!Array.isArray) {
Array.isArray = function (vArg) {
return Object.prototype.toString.call(vArg) === "[object Array]";
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment