JavaScript Variable
What is Variables in JavaScript?
Variables are used to store data. It is like a container, where we use to store things at home. To declare a variable in JavaScript, we use the var, let, or const keyword.
var x;
Here 'var' is the keyword to declare a...
codec1.hashnode.dev2 min read