티스토리 뷰
Math.round()
반올림 : 반환(숫자)
{
1. 기본값 : 1.34
메서드 : round(1.34)
document.querySelector(".sample1_R1").innerHTML = Math.round(1.34);
//결과값 : 1
2. 기본값 : 2.34
메서드 : round(1.64)
document.querySelector(".sample1_R2").innerHTML = Math.round(1.64);
//결과값 : 2
3. 기본값 : 3.34
메서드 : round(1.5)
document.querySelector(".sample1_R3").innerHTML = Math.round(1.5);
//결과값 : 2
4. 기본값 : 3.34
메서드 : round(1.34)
document.querySelector(".sample1_R4").innerHTML = Math.round(1.34);
//결과값 : 1
5. 기본값 : 3.34
메서드 : round(-1.64)
document.querySelector(".sample1_R5").innerHTML = Math.round(-1.64);
//결과값 : -2
6. 기본값 : 3.34
메서드 : round(-1.5)
document.querySelector(".sample1_R6").innerHTML = Math.round(-1.5);
//결과값 : -1
}
'Javascript' 카테고리의 다른 글
Math.ceil() (0) | 2022.05.01 |
---|---|
Math.floor() (0) | 2022.05.01 |
charAt() (0) | 2022.04.17 |
startsWidth(), endWidth() (0) | 2022.04.17 |
toUpperCase(), toLowerCase() (0) | 2022.04.17 |
댓글
© 2018 webstoryboy