Solve the quiz with backbencherCoder015
❓**Question**:
*"What does an array variable store in JavaScript?"*
✅ **Correct Answer**:
*B: Value address*
---
💡 Explanation:
In JavaScript:
Arrays are *non-primitive* (reference) types.
So when you do:
```js
let arr = [1, 2, 3];
```
`arr` *does not store* the actual array content.
It stores the *memory reference (address)* pointing to the actual array stored somewhere in memory.
---
🔍 Let's Review the Options:
| Option | Text | ✅ / ❌ | Why? |
| ------ | --------------------- | ----- | --------------------------------------------------------------------------- |
| A | Value of the variable | ❌ | Confusing wording; variables don’t store "value of variable" — tautology. |
| B | *Value address* | ✅ | Correct! Array variable holds *address (reference)* to the array. |
| C | Value of array | ❌ | Incorrect; that’s what you'd expect, but JS stores a *reference* instead. |
| D | Index of array | ❌ | Totally incorrect — variables don’t store any index info themselves. |
@BackbencherCoder015
On this page of the site you can watch the video online 'What does an array variable store in JavaScript' with a duration of hours minute second in good quality, which was uploaded by the user Backbencher Coder 27 July 2025, share the link with friends and acquaintances, this video has already been watched 17 times on youtube and it was liked by 1 viewers. Enjoy your viewing!