EPAM Systems interview question

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

Interview Answer

Anonymous

21 Sept 2023

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