Javascript examples for Operator:Arithmetic Operator
Number Division
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {/*from ww w . j av a2 s . c o m*/ var x = 10; var y = 5; x /= y; document.getElementById("demo").innerHTML = x; } </script> </body> </html>