Files
30-seconds-of-code/snippets/head-of-list.md
2017-12-10 17:59:07 +02:00

74 B

Head of list

Return arr[0].

var head = arr => arr[0];
}