Quick ES6 Guide
Let & const Keywords
Variables were previously declared using "var" which had function scope and were hoisted to the top within its scope. It means that a variable can be used before declaration.
But the "let" variables and constants have block sco...
web3boy.hashnode.dev3 min read