Variables in JavaScript
A variable is a container for a value. A variable is a “named storage” for data.
There are two types of variables in JavaScript: local variable and global variable. These variables can be defined using keywords var or let or const.
let
First, we will...
pushpamali.hashnode.dev1 min read