Challenge: Logic
Solve tasks regarding if and else in JavaScript.
Task 1
Write a program that asks the user for two numbers and tells them which one is bigger.
Sample input 1:
x: 4y: 10
Expected output:
The biggest number is 10!
Sample input 2:
x: 30y: 55
Expected output:
The biggest number is 55!
Sample input ...