반응형

case 1

var random = Math.floor(Math.random() * 10) +1; // Math.floor() : 소수점 버림, 정수형 반환


case 2

var random = parseInt(Math.random() * 10)+1; // parseInt : 정수형 변환

반응형

+ Recent posts