JavaScript : Variables.
Variables are used to store values in JavaScript. They can be created using the var, let, or const keywords.
let, const and var
The var keyword is used to declare a variable that is scoped to the nearest function or block. The let keyword is similar ...
hashnodecoder.hashnode.dev1 min read