MERN STACK Mern Stack Interview Questions and Answers SECTION 1: JavaScript & ES6+ Fundamentals (10 Questions) What is the difference between let, const, and var? var is function-scoped, hoisted with undefined. let and const are block-scoped. let allows reassignment; const does not. Use const by default, let when reassignment is required. Explain closures in JavaScript. […]