UNPKG
@mxmitch/lotide
Version:
latest (1.0.1)
1.0.1
1.0.0
A mini clone of the [Lodash](https://lodash.com) library.
github.com/mxmitch/lotide
mxmitch/lotide
@mxmitch/lotide
/
tail.js
9 lines
(8 loc)
•
173 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
tail =
function
(
myArray
) {
let
result = [];
for
(
let
i =
1
; i < myArray.
length
; i++) { result.
push
(myArray[i]); }
return
result; };
module
.
exports
= tail;