수학적인 상수와 함수를 위한 속성과 메서드를 가진 내장 객체
Math.floor
Number를 정수로 변환해 주는 함수(=내림)Math.ceil
올림Math.round
반올림0~1 사이의 실수를 랜덤으로 리턴한다. (1 미포함)
Math.floor(Math.random())
의 결과는 항상 0이다.-> 숫자를 곱하고 소수점 이하를 버린다.
Math.floor(Math.random() * 10)
Math.floor(Math.random() * 11)
Math.floor(Math.random() * 101)
1) Math.random() * (max - min + 1) 값을 계산하고, 소수점 이하를 버린다.
2) min 값을 더한 후 정수로 변환한다.
Math.floor(Math.random() * (max - min + 1) + min)