From d553c8bdae02fee1b85e34d2c812295a44c7846e Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Sun, 27 Dec 2015 20:05:56 +0530 Subject: [PATCH] Accessing Objects Properties with the Dot Operator --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 5336c09437..1c7ec08a87 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -3575,7 +3575,7 @@ "description": [ "There are two ways to access the properties of an object: the dot operator (.) and bracket notation ([]), similar to an array.", "The dot operator is what you use when you know the name of the property you're trying to access ahead of time.", - "Here is a sample of using the . to read an object property:", + "Here is a sample of using the dot operator (.) to read an object property:", "
var myObj = {
prop1: \"val1\",
prop2: \"val2\"
};
myObj.prop1; // val1
myObj.prop2; // val2
", "

Instructions

", "Read the values of the properties hat and shirt of testObj using dot notation."