ES6
ES6 is the latest version of javascript: ECMAScript (or ES ) is a scripting-language specification standardized by Ecma International in ECMA-262 and ISO/IEC 16262. var vs let var is function scope let is a block scope var declared with var are hoisted var declared with let and const not hoisted function displayVar(){ function displayLet (){ if(true){ if(true){ var m = 20; let m = 20; } } console.log(m); ...