Javascript LET Javascript June 12, 2022 Pramod T P Leave a comment The let keyword was introduced in ES6 (2015). Variables defined with let cannot be Redeclared. Variables defined with let must be Declared before use. Variables defined with let have Block Scope.