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