hello-wordl/src/util.ts

6 lines
136 B
TypeScript
Raw Normal View History

2021-12-31 03:43:09 +02:00
export const wordLength = 5;
export function pick<T>(array: Array<T>): T {
return array[Math.floor(array.length * Math.random())];
}