Difference between variable var const let
foreword ECMAScript variables are loosely typed, variables can hold any type of data, each variable is nothing but a named placeholder for holding an arbitrary value. There are three keywords to declare variables, var is available in all versions of ECMAScript, and const and let can only be used after ES6 versions 1. var declaration […]
Difference between variable var const let Read More »