JS

JavaScript Fundamentals 3 - Variable declaration a...

9.

Which of the following statements about variable declaration and assignment in JavaScript is true?

Variables declared with the var keyword have block scope.

Variables declared with the let keyword are hoisted to the top of their scope.

Variables declared with the const keyword can be reassigned with a new value.

Variables can be declared without assigning a value.