### Head of list Return `arr[0]`. ```js const head = arr => arr[0]; // head([1,2,3]) -> 1 ```