From 7f8c10b60273ce311a58d9303e1803ddb99c84f4 Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Thu, 11 Feb 2016 19:12:33 -0800 Subject: [PATCH] Clarify instructions on saving object properties --- .../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 6a4c302b7f..0b666b359c 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -3384,7 +3384,7 @@ "Here is a sample of using the dot operator (.) to read an object property:", "
var myObj = {
prop1: \"val1\",
prop2: \"val2\"
};
var prop1val = myObj.prop1; // val1
var prop2val = myObj.prop2; // val2
", "

Instructions

", - "Read in the property values of testObj using dot notation. Set the property hat to the variable hatValue and the property shirt to shirtValue." + "Read in the property values of testObj using dot notation. Set the variable hatValue equal to the object property hat and set the variable shirtValue equal to the object property shirt." ], "releasedOn": "January 1, 2016", "challengeSeed": [