로또
[JS] 중복없는 특정 범위의 랜덤 숫자 배열
코드 예제 See the Pen Lotto Number by hyukson (@hyukson) on CodePen. Set 객체function getRandomNumber(max, min = 1) { return Math.floor(Math.random() * max) + min;}function getUniqueNumberList(count, max, min = 1) { const list = new Set(); while (count > list.size) { list.add(getRandomNumber(max, min)); } return [...list];}getUniqueNumberList(3, 10);// [4, 7, 9]Set 객체를 활용하면 중복된 값을 제거할 수 있..