Day 1: JavaScript Basics QUESTION 1: Write a script to: Declare variables using var, let, and const. Demonstrate variable reassignment and scope. QUESTION 2: Write a program to: Display the data types of string, number, boolean, undefined, and object using typeof. QUESTION 3: Write a script that accepts two numbers from the user and calculates their: Sum Difference Product Quotient QUESTION 4: Create a JavaScript function that takes two numbers as arguments and returns the larger number. QUESTION 5: Write a program to demonstrate how == and === behave differently for type coercion.