Block scope is everything inside a set of braces In Javascript Let is a block scoping.
Let
Example:
if (true) { let siteName = QueryHome; document.write(siteName + "is a Q2A Platform") }
where let scope is only with in the if statement.