Files
PyUIBuilder/src/utils/random.js
2025-03-18 18:08:25 +05:30

5 lines
99 B
JavaScript

export function randomArrayChoice(arr){
return arr[Math.floor(Math.random() * arr.length)];
}