QP School
JavaScript exercises and solutions - Identify if a number is odd or even - Printable Version

+- QP School (https://qomplainerzschool.lima-city.de)
+-- Forum: Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=3)
+--- Forum: JavaScript Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=6)
+--- Thread: JavaScript exercises and solutions - Identify if a number is odd or even (/showthread.php?tid=4103)



JavaScript exercises and solutions - Identify if a number is odd or even - Qomplainerz - 04-04-2023

The HTML part between the <body></body> tags looks like this:

Code:
Please enter a number here:
<br>
<input type="Text" id="Num1">
<br>
<input type="button" id="submit" value="submit" onclick="oddOrEven()"></input>
<p id="Output"></p>
<input type="button" id="reset" value="Reset" onclick="Reset()"></input>

The JavaScript part looks like this:

Code:
function oddOrEven()
{
  Num1 = document.getElementById("Num1").value;
 
  if(Num1 % 2 == 0)
    {
      document.getElementById("Output").innerHTML = "Even";
    }
  else
    {
      document.getElementById("Output").innerHTML = "Odd";
    }
}

function Reset()
{
  document.getElementById("Num1").value = "";
  document.getElementById("Output").innerHTML = "";
}