数组常用方法总结 concat filter map some every reduce sort includes join some every 语法:array.every(function(currentValue, index, arr){}, thisValue); function isEvery(currentValue, index, arr) { console.log(currentValue, index, arr); return currentValue <= 7 }…