All Interview Questions

1 questions found · Search: "const"

Categories
Difficulty Level
Question Type
Popular Tags
JavaScript HTML HTML5 Semantic Web Development CSS Box Model Layout Web Design ES6 Variables var let const SEO
Showing 1 of 1 questions
1
Web Development · JavaScript Beginner
What is the difference between var, let, and const in JavaScript?
var is function-scoped, let and const are block-scoped. const cannot be reassigned, let can.
3 min 2 0 JavaScript, ES6