Dev. Web/자주 쓰는 스크립트 모음
sample - 배열 랜덤값
devock
2019. 6. 16. 18:53
const sample = arr => arr[Math.floor(Math.random() * arr.length)];
sample([3, 7, 9, 11]); // 9