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
Auf dieser Seite können Sie das Online-Video 'What does an array variable store in JavaScript' mit der Dauer stunde minuten sekunde in guter Qualität ansehen, das der Benutzer Backbencher Coder 27 Juli 2025 hochgeladen hat, den Link mit Freunden und Bekannten teilen, dieses Video wurde auf Youtube bereits 17 Mal angesehen und es wurde von 1 den Zuschauern gefallen. Viel Spaß beim Betrachtenden Zuschauern gefallen!