Difference Between Var, Let and Const in ES6
The Difference with Handy examples
Nov 5 · 3 min read

The differences between these three variables made me confused when I started to use ECMAScript 6. The most confusing was to understand the difference between let and var.
So let’s try to explain this difference.
var a = 'I am var';
const b = 'I am const';
let c = 'I am let';

