Javascript var, let, and const: the differences
Javascript variables are names given to data storage locations in Javascript. Before 2015, variables have always been declared with the var keyword, like this:
var name = "Mus3ab";
But since 2015, when the ECMAScript 6 (es6) version of javascript w...
musab19.hashnode.dev2 min read