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": [