Skip to content

Instantly share code, notes, and snippets.

@anjanaraveendra
Created October 19, 2015 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anjanaraveendra/7dbe1afd99af9dd816c9 to your computer and use it in GitHub Desktop.
Save anjanaraveendra/7dbe1afd99af9dd816c9 to your computer and use it in GitHub Desktop.
<script>
var a=prompt("Enter a value");
if(a%2==0)
{
alert("Given number is even");
}
else {
alert("Give number is odd");
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment