2018-10-12 15:37:13 -04:00
|
|
|
---
|
|
|
|
title: Accessing Object Properties with Variables
|
|
|
|
---
|
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
# Accessing Object Properties with Variables
|
2018-10-12 15:37:13 -04:00
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
|
|
|
|
---
|
|
|
|
## Solutions
|
|
|
|
|
|
|
|
<details><summary>Solution 1 (Click to Show/Hide)</summary>
|
2018-10-12 15:37:13 -04:00
|
|
|
|
|
|
|
```js
|
|
|
|
// Setup
|
|
|
|
var testObj = {
|
|
|
|
12: "Namath",
|
|
|
|
16: "Montana",
|
|
|
|
19: "Unitas"
|
|
|
|
};
|
|
|
|
|
|
|
|
// Only change code below this line;
|
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
var playerNumber = 16; // Change this Line
|
|
|
|
var player = testObj[playerNumber]; // Change this Line
|
2018-10-12 15:37:13 -04:00
|
|
|
```
|
2019-07-24 00:59:27 -07:00
|
|
|
</details>
|