### Initial of list Return `arr.slice(0,-1)`. ```js const initial = arr => arr.slice(0,-1); ```