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