[JS] 자바스크립트 랜덤
자바스크립트 랜덤 0부터 10까지 랜덤 숫자 구하기 var random = (Math.random() *11) ; console.log(random.toFixed(0)); 5부터 20까지 랜덤 숫자 구하기 var random = Math.floor((Math.random() * 20 - 5) + 5 ); // * 최대값-시작값 ) + 시작값 console.log(random); parseInt() 또는 toFixed()를 사용해 정수로 표현
2021.03.05