Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 84 Bytes

tail-of-list.md

File metadata and controls

7 lines (5 loc) · 84 Bytes

Tail of list

Return arr.slice(1).

var tail = arr => arr.slice(1);