Untitled
unknown
typescript
2 years ago
240 B
8
Indexable
function shuffleArray<T>(array: T[]): T[] {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1))
;[array[i], array[j]] = [array[j], array[i]]
}
return array
}
export default shuffleArray
Editor is loading...
Leave a Comment