1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/client/helpers/randomFromArray.js
2019-11-16 12:00:06 +07:00

3 lines
116 B
JavaScript

const randomFromArray = (array) => array[Math.floor(Math.random() * array.length)];
export default randomFromArray;