All Interview Questions

2 questions found · Search: "JavaScript"

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 2 of 2 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
2
Web Development · JavaScript Beginner MCQ
Which method is used to add an element at the end of an array in JavaScript?
push() method adds elements at the end of array.
1 min 2 0 JavaScript, Arrays