What is variable in JavaScript?
A variable in JavaScript is an identifier that provides a storage location used to store a data value. The data stored at a particular location in memory. That we accessed by using the variable name.In JavaScript programs, a script will have to store the bits of information temporarily. It needs to do its work. It … Read more