Complete the code to declare a variable named age using let.
[1] age = 25;
var instead of let.const which does not allow reassignment.int.Use let to declare a variable that can change later.
Complete the code to declare a variable name and assign it the string 'Alice' using let.
[1] name = 'Alice';
const which prevents reassignment.function which is not for variable declaration.let declares a variable that can be changed later. Here, name is assigned the string 'Alice'.
Fix the error by completing the code to declare a variable count with let.
let [1] = 10;
The variable name should be count. The keyword let is already used.
Fill both blanks to declare two variables x and y using let and assign them values 5 and 10.
[1] x = 5; [2] y = 10;
const which prevents reassignment.var instead of let.Use let before each variable to declare them properly.
Fill all three blanks to declare variables a, b, and c using let and assign them values 1, 2, and 3 respectively.
[1] a = 1; [2] b = 2; [3] c = 3;
const which prevents reassignment.var instead of let.Each variable is declared with let. The order of let keywords matches the blanks.