반응형
소수점
javasciprt 기본 네이티브 lib 에서 Math object의 round, ceil, floor를 사용하면 된다.
반올림
Math.round(2.4); => 2
Math.round(2.49); => 2
Math.round(2.5); => 3
Math.round(2.51); => 3
올림
Math.ceil(2.1) =>3
Math.ceil(2.6) =>3
내림 (버림)
Math.floor(2.1); => 2
Math.floor(2.6); => 2
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to round the number 2.5 to its nearest integer.</p>
<button onclick="myFunction()">Try it</button> //클릭시 myFunction 함수 실행
<script>
function myFunction()
{
document.getElementById("demo").innerHTML=Math.round(2.5); // 2.5를 반올림하여 demo의 innerHTML에 다가 쓴다 당연히 3이겠지?
}
</script>
</body>
</html>
결과 : Try it 버튼 클릭 시
3
반응형
댓글