Files

22 lines
518 B
Markdown
Raw Normal View History

2018-10-12 16:00:59 -04:00
---
title: Accessing Object Properties with Variables
localeTitle: Доступ к объектам с переменными
---
## Доступ к объектам с переменными
Вот работающее решение, если вы застряли:
```js
// Setup
var testObj = {
12: "Namath",
16: "Montana",
19: "Unitas"
};
// Only change code below this line;
var playerNumber = 16; // Change this Line
var player = testObj[playerNumber]; // Change this Line
```