EPAM Systems Interview Question

What is the difference between var, let, and const.

Interview Answer

Anonymous

Sep 21, 2023

var: function-scoped, hoisted. let: block-scoped, hoisted without value. const: block-scoped, hoisted without value, immutable binding.