4 lines
87 B
TypeScript
4 lines
87 B
TypeScript
export function last<T>(array: T[]): T | undefined {
|
|
return array[array.length - 1]
|
|
}
|