UNPKG
@suncraft/lotide
Version:
latest (1.0.0)
1.0.0
Lighthouse labs lodash remake by students.
github.com/suncraft/lotide
suncraft/lotide
@suncraft/lotide
/
tail.js
13 lines
(9 loc)
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// let newArr = [];
const
tail =
function
(
arr
) {
let
newArr = []; newArr = arr.
slice
(
1
);
// return console.log(newArr.slice(1));
return
newArr; };
module
.
exports
= tail;
// console.log(tail([1, 2, 3]));