Javascript examples for Operator:Quiz
Use the *= operator to multiply the variable x with 5.
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var x = 10;/*from w ww. ja v a 2 s. c om*/ x *= 5; document.getElementById("demo").innerHTML = x; </script> </body> </html>