<head> <h1>ODD</h1> </head> <body> <script> const a = +prompt("Enter a number"); if (typeof a !== 'number') alert("non correct type"); if (a % 2) alert("odd"); else alert("ever"); </script> </body>