Exercise:
Round "5.3" to the nearest integer, and display it.
Hint
Hint: Use the round() method.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> // Insert the Math method here </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> document.getElementById("demo").innerHTML = Math.round(5.3); </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy