Math.random()
: 0.0001~0.9999 랜덤 숫자 생성
1~N의 랜덤 숫자를 구한다면
Math.floor(Math.random() * N) +1
Math.round()
: 반올림
Math.ceil()
: 올림
Math.floor()
: 내림
Math.abs()
: 절댓값
Math.max(...인자)
: 인자들 중에 최댓값
Math.min(...인자)
: 인자들 중에 최솟값
Math.sqrt()
: 제곱근
Math.pow(x, y)
: x의 y거듭제곱
추가적으로
toFixed()
: 소수점 자릿수 지정, 문자열로 저장됨
(이건 Number객체인데 숫자계산에 많이 사용돼서 추가했습니다.)