filter() 方法创建一个新的数组,新数组中的元素是通过检查指定数组中符合条件的所有元素。 array.filter(function(currentValue,index,arr),thisValue) 参数说明 every() 方法用于检测数组所有元素是否都符合指定条件(通过函数提供)。 array.every(function(currentValue,index,arr),thisValue) 参数说明...