What is the difference between let, const, and var?
Answer Posted / glibwaresoftsolutions
Keyword Scope Can be reassigned? Hoisted?
var Function-scoped Yes Yes (initialized as undefined)
let Block-scoped Yes No
const Block-scoped No No
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to remove duplicate values from a javascript array?
Why is javascript used for web pages?
How can I set up my own javascript error handler?
What is the javascript function?
What boolean operators can be used in JavaScript?
Is javascript necessary?
When would you use var in your declaration and when you wouldn’t?
What are the different types of errors supported by javascript?
What are the data types supported by javascript?
How to write a hello world example of javascript?
What do you understand by this keyword in javascript?
What is encodeuri() function?
What would be the result of 3+2+”7″?
How to get inner html of an element in javascript?
Write a program in Java to display the IP address of the local and remote machine.