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 boolean operators does JavaScript support?
5 Answers Aptech, HCL, Satyam,
List out the different ways an HTML element can be accessed in a Javascript code?
What are javascript functions?
Explain javascript event delegation model?
What is the context in javascript?
What are the problems associated with using javascript, and are there javascript techniques that you discourage?
How do you disable javascript?
Give code Email Checking
How can javascript be used to personalize or tailor a web site to fit individual users?
What is console.log()?
How to get the contents of an input box using javascript?
How are event handlers utilized in javascript?