Check Positive, Negative and Zero number
- Create a variable with any number.
- Create a function that check this variable number is negative, positive or zero.
- If number is zero then print console.log("The number is zero.");
- If number is positive then print console.log("The number is positive .");
- If number is negative then print console.log("The number is negative .");
- Create a button and on click event to call the function.