📄️ Variables
There are two ways to declare a variable in javascript, using const and let.
📄️ Define a variable
Define a variable named count with an initial value of 0 and then increment it (add 1 to it) on the following line.
📄️ Enter a number
Define a variable enterNumber that cannot be re-assigned.