JavaScript let and var keywords
ES6 adds the let keyword, which differs from the var keyword as follows. variables declared by let are valid only within their code block. variables declared by var are valid globally. variables declared by var can be used before they…