Learn Lodash _.drop – Creates a slice of array with n elements dropped from the beginning.
// first Example const drop = (arr, n) => { for(let i = 0; i < n; i++) { arr.shift(arr[i]) } return arr; } console.log('drop', drop([1, 2, 3], 1)) // second example const drop = (arr, n) => { return...