// first Example const drop = (arr, n) => { for(let i = 0; i { return arr.slice(n) } console.log('drop', drop([1, 2, 3], 1))
解释:
示例: