提供使用 JavaScript 数组的工具函数。
检查作为参数传递的数组是否包含特定值(从数组的末尾开始)。
Array | array | the array |
Object | val | the value to check |
Boolean | true if the value is contained |
检索一组数组的交集。
Array | array1,... | the arrays to intersect |
Array | the intersection set |
Array | array | the array |
Number | the maximal element in an array obtained by calling Math.max(). |
Array | array | the array |
Number | the minimal element in an array obtained by calling Math.min(). |
对象数组的最后一个元素,如果数组为空,则为 undefined。
Array | array | the array |
Object | the last element of the array, or undefined if the array is empty. |
从数组中删除第一次出现的参数值。此方法会改变并返回调用它的数组,并且不会创建新的数组实例。
Array | array | the array |
Object | val | the value to remove |
Array | the array |
检索一组数组的联合集合。
Array | array1,... | the arrays to unify |
Array | the union set |