isArray_.isArray(object)如果 object 是一个数组,返回 true。(function(){ return _.isArray(arguments); })();=> false_.isArray([1,2,3]);=> trueCopy