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
What is singleton class in javascript? Explain
How do you sort an array in javascript?
Javascript, Pass by Value or Pass by Reference?
What is the difference between rootscope and scope?
How do you write an if statement in javascript?
How to get an element by class in javascript ?
How to get the type of arguments passed to a function?
What is the use of window object?
What is array in javascript?
What is a null variable in javascript?
Which built-in method calls a function for each element in the array?
What is break and continue statements?
How do you change the style/class on any element using javascript?
What is meant by vanilla javascript?
What is nodetype in javascript?