From a483f57c48fc5dca7f4d1cf807435f3b5ac00729 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Sun, 27 Mar 2016 13:49:45 +0530 Subject: [PATCH] Fix Compound Assignment Challenges This commit updates the Compound assignment challenges: * Compound Assignment With += * Compound Assignment With -= * Compound Assignment With *= * Compound Assignment With \= to * Compound Assignment With Augmented Addition * Compound Assignment With Augmented Substraction * Compound Assignment With Augmented Multiplication * Compound Assignment With Augmented Division Tested locally --- .../basic-javascript.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 7dda2fd78a..45d0cbad79 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -651,7 +651,7 @@ }, { "id": "56533eb9ac21ba0edf2244af", - "title": "Compound Assignment With +=", + "title": "Compound Assignment With Augmented Addition", "description": [ "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;", @@ -702,7 +702,7 @@ }, { "id": "56533eb9ac21ba0edf2244b0", - "title": "Compound Assignment With -=", + "title": "Compound Assignment With Augmented Subtraction", "description": [ "Like the += operator, -= subtracts a number from a variable.", "myVar = myVar - 5;", @@ -752,7 +752,7 @@ }, { "id": "56533eb9ac21ba0edf2244b1", - "title": "Compound Assignment With *=", + "title": "Compound Assignment With Augmented Multiplication", "description": [ "The *= operator multiplies a variable by a number.", "myVar = myVar * 5;", @@ -802,7 +802,7 @@ }, { "id": "56533eb9ac21ba0edf2244b2", - "title": "Compound Assignment With /=", + "title": "Compound Assignment With Augmented Division", "description": [ "The /= operator divides a variable by another number.", "myVar = myVar / 5;",