What is the difference between let, const, and var?
Answer / 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 |
What are the main functions performed by javascript statements?
What is the difference between undefined and object?
What is the similarity between the 1st and 2nd statement?
What are the primitive data types in JavaScript?
What is the Use of true or false in Ajax cal using Java Script?
What is difference between deep and shallow object coping in javascript?
In how many ways a Javascript code can be involved in an HTML file?
How do I view javascript files in chrome?
What is createtextnode?
How javascript sort function works?
Explain unescape() and escape() in javascript?
How to create array in JavaScript?