UNPKG

@gleefullychill/lotide

Version:

A library based off of lodash for a student project

10 lines (8 loc) 177 B
const tail = function(_array) { let newArray = []; for (let i = 1; i < _array.length; i++) { newArray.push(_array[i]); } return newArray; }; module.exports = tail;