var number1 = 5;
number1 = 3;
Here, we defined a number called "number1" which was equal to 5. However, on the second line, we changed the value to 3. To show the value of a variable, we log it to the console or use window.alert():
console.log(number1); // 3
window.alert(number1); //...