What is JavaScript Strict Mode, and how do you enable it?
Strict Mode restricts JavaScript to catch common mistakes and unsafe actions. Enable with ‘use strict’; at start of script or function.
Three behaviors different in strict vs non-strict mode?
Why use meaningful naming conventions?
Improves readability, maintainability, and collaboration.
Why is consistent indentation important?
It structures code visually and improves readability.
How do ES Modules improve code?
Enable explicit import/export, enforce modularity, prevent naming collisions.