JavaScript Interview Questions
Core JavaScript interview themes linked to Avora’s JS fundamentals path.
What is the DOM?
The Document Object Model is the live tree of elements the browser builds from HTML so scripts can read and update the page.
What is the difference between let and const?
Both are block-scoped. const cannot be reassigned; let can. Prefer const until you need reassignment.
