i can't figured out why my code won't work. I'm trying to create a little modulo calculator and i'm pretty new to javascript and came up with this code.
<!DOCTYPE html>
<html>
<head>
<title>Modulo Calculator</title>
</head>
<body>
Modulo Caculator
<script>
var x = myModulo(5,3); //enter numbers here
function myModulo(a,b) {
return a % b
};
</script>
</body>
</html>
It should return 2 but i know i'm missing something somewhere, but what?
Your code is just fine. You just need to update the view with the calculation result..
Here is an example of a working Mod calculator.
Explanation of this code
Hope this helps you understand more about JS and HTML interaction. Good luck