Pergunta de entrevista da empresa EPAM Systems

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

Resposta da entrevista

Sigiloso

21 de set. de 2023

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