Last values of an array or string (omitting the first).
const array = ["🟢", "🟩", "💚"];const tail: Tail<typeof array> = ["🟩", "💚"];
Last values of an array or string (omitting the first).
Example