摘要:
drop 将数组头部的n个元素丢弃,返回一个新的数组 // 默认n为1 function drop(arr, n = 1) { if(n<0){ throw new Error('n must be positive'); } return arr.slice(n); } dropRight 和dr 阅读全文
摘要:
difference 从第一个参数数组中找出后面参数数组里未出现的元素,组成新的数组返回 function difference(arr, ...rest) { // 扁平化rest const target = rest.reduce((pre, cur) => { return pre.conc 阅读全文