Exercise:
Use the *= operator to multiply the variable x with 5.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var x = 10; // add code here document.getElementById("demo").innerHTML = x; </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var x = 10; x *= 5; document.getElementById("demo").innerHTML = x; </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy