Programming (Year 11)
Variable Declaration
Which of the following is a correct way to declare a variable in JavaScript?
var x = 10;
int x = 10;
declare x = 10;
let x: 10;
Next