InterviewSolution
Saved Bookmarks
| 1. |
What is JavaScript variables? |
|
Answer» Heya mate GM ❤A JavaScript variable is SIMPLY a name of STORAGE location. There are two types of variables in JavaScript : local variable and GLOBAL variable. There are some rules while declaring a JavaScript variable (also known as identifiers). Name must start with a letter (a to z or A to Z), underscore( _ ), or DOLLAR( $ ) sign.... Thank you have a great day ❤✌✌ |
|