var vs let vs cost
ES6: Introduction
var vs let vs const In this article, var, let and const will be discussed with respect to their scope, use and hoisting. Normally in Javascript we create a variable like this. var x = "StatelyWorld!"; But in ES6 we can also create a variable like this. let x =[...]