From 0461a50f05d2714ad785bed28b876269d4729a26 Mon Sep 17 00:00:00 2001 From: Julie lappano Date: Wed, 21 Sep 2016 17:17:40 -0400 Subject: [PATCH] Added clarification in instruction for Accessing Object Properties with Variables --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index f3bba808ba..9ffab9a861 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -4340,7 +4340,7 @@ "
var myDog = \"Hunter\";
var dogs = {
Fido: \"Mutt\",\n Hunter: \"Doberman\",\n Snoopie: \"Beagle\"
}
var breed = dogs[myDog];
console.log(breed);// \"Doberman\"
", "Note that we do not use quotes around the variable name when using it to access the property because we are using the value of the variable, not the name", "

Instructions

", - "Use the playerNumber variable to lookup player 16 in testObj using bracket notation." + "Use the playerNumber variable to lookup player 16 in testObj using bracket notation. Then assign that name to the player variable." ], "releasedOn": "January 1, 2016", "challengeSeed": [