freeCodeCamp/guide/spanish/certifications/javascript-algorithms-and-d.../basic-javascript/accessing-object-properties.../index.md

22 lines
498 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Accessing Object Properties with Variables
localeTitle: Accediendo a las propiedades del objeto con variables
---
## Accediendo a las propiedades del objeto con variables
Aquí hay una solución de trabajo en caso de que esté atascado:
```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
```