hw05_01.html 242 B

123456789101112
  1. <head>
  2. <h1>ODD</h1>
  3. </head>
  4. <body>
  5. <script>
  6. const a = +prompt("Enter a number");
  7. if (typeof a !== 'number') alert("non correct type");
  8. if (a % 2) alert("odd");
  9. else alert("ever");
  10. </script>
  11. </body>