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 write frame work Architecture in QTP
Can you use javascript to hack?
Is JavaScript a true OOP language?
Do I need javascript enabled?
Can you run javascript in notepad?
What is a prompt box in javascript?
Explain closures in javascript?
Is dart better than javascript?
How do you check if an object is an array or not?
How many data types are there in javascript?
How to clone an object in javascript?
Name the different types of pop up boxes in Javascript?
What is this? Var myarray = [[[]]];
What is called variable?
How can the style/class of an element be changed?