Difference between variable var, let and const
In javascipt one can define variable using var let or const. Before the introduction of ES6, JavaScript only had var to define variables. The var is the classic old way to declare variables in javascript and it can declare both local and global vari...
vinsmok.hashnode.dev3 min read