Files
30-seconds-of-code/snippets/head-of-list.md
2017-12-12 07:11:37 -05:00

74 B

Head of list

Return arr[0].

const head = arr => arr[0];