Saved Bookmarks
| 1. |
In JavaScript how do I store a lot of variables inside a variable?? Please tell me if u know how |
|
Answer» Answer: Before you use a variable in a JavaScript program, you must DECLARE it. Variables are DECLARED with the var keyword as follows. STORING a VALUE in a variable is called variable initialization. You can do variable initialization at the time of variable creation or at a later point in time when you need that variable. Explanation: pls mark me as the brainliest |
|