1 ~ n 까지의 숫자들을 랜덤으로 섞은 배열 만들기

ooz·2021년 6월 18일
0

스터디

목록 보기
16/18
const numbers = Array(30).fill().map((n, i) => (i + 1));
const shuffle = [];
while(numbers.length > 0) {
  shuffle.push(
    numbers.splice(Math.floor(Math.random()*numbers.length), 1)[0]
  )
}
profile
사는 것도 디버깅의 연속. feel lucky to be different🌈 나의 작은 깃허브는 https://github.com/lyj-ooz

0개의 댓글