language-learning-app/frontend/src/lib/shuffleArray.ts

4 lines
108 B
TypeScript
Raw Normal View History

export function shuffleArray<T>(data: Array<T>): Array<T> {
return data.sort(() => Math.random() - 0.5);
}