From d1b3ba22f6e0f1a0c3cb208eccb6d5ae00c8dff6 Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Fri, 25 Dec 2015 00:18:31 +0530 Subject: [PATCH] Assignment with Plus Equals --- .../basic-javascript.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 4641d77dc0..7150adf527 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -567,13 +567,13 @@ "id": "56533eb9ac21ba0edf2244af", "title": "Assignment with Plus Equals", "description": [ - "In Javascript it is common to need to modify the contents of a variable mathematically. Remember that everything to the right of the equals sign is evaluated first, so we can say:", + "In programming, it is common to use assignments to modify the contents of a variable. Remember that everything to the right of the equals sign is evaluated first, so we can say:", "myVar = myVar + 5;", - "to add 5 to myVar. Since this is such a common pattern, there are operators which do both a mathematical operation and assignement in one step.", + "to add 5 to myVar. Since this is such a common pattern, there are operators which do both a mathematical operation and assignment in one step.", "One such operator is the += operator.", "myVar += 5; will add 5 to myVar.", "

Instructions

", - "Convert the assignements for a, b, and c to use the += operator." + "Convert the assignments for a, b, and c to use the += operator." ], "releasedOn": "11/27/2015", "tests": [