UNPKG
@kowo0403hk/lotide
Version:
latest (1.0.1)
1.0.1
1.0.0
lotide library by LHL Bootcamp student
github.com/kowo0403hk/lotide
kowo0403hk/lotide
@kowo0403hk/lotide
/
tail.js
9 lines
(8 loc)
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
tail =
function
(
arr
) {
if
(!
Array
.
isArray
(arr)) {
throw
new
Error
(
"parameter has to be an array"
); }
let
newArr = arr.
slice
(
1
);
return
newArr; };
module
.
exports
= tail;