scrimba
Learn Basic JavaScript
Accessing Object Properties with Variables
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Accessing Object Properties with Variables
AboutCommentsNotes
Accessing Object Properties with Variables
Expand for more info
index.js
run
preview
console
// Setup
var testObj = {
12: "Namath",
16: "Montana",
19: "Unitas"
};

// Only change code below this line;

var playerNumber; // Change this Line
var player = testObj; // Change this Line
Console
index.html
-0:44