☰std/array/pop Returns the given array without the last element. Type signature <T>(xs: T[]) => T[] Examples pop([1, 2, 3, 4]); // ⇒ [1, 2, 3] Try in REPL pop([]); // ⇒ [] Try in REPL Questions How to get an array without the last element?How to remove the last element from an array? TypeScript source • JavaScript source