이 기사의 예에서는 JavaScript에서 반올림 함수 round를 사용하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
JavaScript의 Math 객체에는 숫자를 반올림하는 round 메소드가 포함되어 있습니다. 다음 코드는 해당 사용법을 자세히 보여줍니다.
<!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> <script> function myFunction() { document.getElementById("demo").innerHTML=Math.round(2.5); } </script> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.