Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | function map(arr, fn) { let idx = 0, index = 0, len = arr.length, result = new Array(len); while (++idx < len) { result[index++] = fn(arr[idx - 1], idx, arr); } return result; } // https://stackoverflow.com/questions/8073673/how-can-i-add-new-array-elements-at-the-beginning-of-an-array-in-javascript const array = [3, 2, 1]; const newFirstElement = 4; const newArray = [newFirstElement].concat(array) |