JS判断变量是否是数组
isArray = ('isArray' in Array) ? Array.isArray : function(value) { return Object.prototype.toString.call(value) === '[object Array]'; }