Exercise:
Fix the code to display the number with the highest value.
Hint
Hint: Use the max() method.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> document.getElementById("demo").innerHTML = Math(0, 150, 30, 20, -8); </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.max(0, 150, 30, 20, -8); </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy