File size: 195 Bytes
2488073 |
1 2 3 4 5 6 7 8 |
export function last<T>(arr: T[]): T | undefined {
return arr[arr.length - 1];
}
export function randomPick<T>(arr: T[]): T | undefined {
return arr[Math.floor(Math.random() * arr.length)];
}
|