I understand why var takes that name - it is variable, const - it is a constant, but what is the meaning behind the name for let, whic
var
const
let
Let uses a more immediate block level limited scope whereas var is function scope or global scope typically.
It seems let was chosen most likely because it is found in so many other languages to define variables, such as BASIC, and many others.