Last value of an array or string.
const array = ["🟢", "🟩", "💚"];const last: Last<typeof array> = "💚";
Last value of an array or string.
Example