From 3a4402434bddce557e5f244927f7ce4d2ff6a618 Mon Sep 17 00:00:00 2001 From: Varun Date: Wed, 22 May 2019 03:37:50 +0530 Subject: [PATCH] fix(curriculum): Update challenge instructions (#36104) --- .../basic-javascript/accessing-nested-objects.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-objects.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-objects.english.md index 17aa081711..16e20fa29f 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-objects.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/accessing-nested-objects.english.md @@ -31,7 +31,7 @@ ourStorage.desk.drawer; // "stapler" ## Instructions
-Access the myStorage object and assign the contents of the glove box property to the gloveBoxContents variable. Use bracket notation for properties with a space in their name. +Access the myStorage object and assign the contents of the glove box property to the gloveBoxContents variable. Use dot notation for all properties where possible, otherwise use bracket notation.
## Tests