freeCodeCamp/guide/spanish/certifications/javascript-algorithms-and-data-structures/basic-javascript/accessing-object-properties-with-variables/index.md
2018-10-16 21:32:40 +05:30

498 B

title localeTitle
Accessing Object Properties with Variables 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:

// 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