diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json
index 5572c79818..7dda2fd78a 100644
--- a/challenges/01-front-end-development-certification/basic-javascript.json
+++ b/challenges/01-front-end-development-certification/basic-javascript.json
@@ -87,9 +87,9 @@
},
{
"id": "56533eb9ac21ba0edf2244a8",
- "title": "Storing Values with the Equal Operator",
+ "title": "Storing Values with the Assignment Operator",
"description": [
- "In JavaScript, you can store a value in a variable with the assignment or equal
(=
) operator.",
+ "In JavaScript, you can store a value in a variable with the assignment operator.",
"myVariable = 5;
",
"Assigns the Number
value 5
to myVariable
.",
"Assignment always goes from right to left. Everything to the right of the =
operator is resolved before the value is assigned to the variable to the left of the operator.",
@@ -137,7 +137,7 @@
},
{
"id": "56533eb9ac21ba0edf2244a9",
- "title": "Initializing Variables with the Equal Operator",
+ "title": "Initializing Variables with the Assignment Operator",
"description": [
"It is common to initialize a variable to an initial value in the same line as it is declared.",
"var myVar = 0;
",
@@ -651,7 +651,7 @@
},
{
"id": "56533eb9ac21ba0edf2244af",
- "title": "Assignment with Plus Equals",
+ "title": "Compound Assignment With +=",
"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": "Assignment with Minus Equals",
+ "title": "Compound Assignment With -=",
"description": [
"Like the +=
operator, -=
subtracts a number from a variable.",
"myVar = myVar - 5;
",
@@ -752,7 +752,7 @@
},
{
"id": "56533eb9ac21ba0edf2244b1",
- "title": "Assignment with Times Equals",
+ "title": "Compound Assignment With *=",
"description": [
"The *=
operator multiplies a variable by a number.",
"myVar = myVar * 5;
",
@@ -802,7 +802,7 @@
},
{
"id": "56533eb9ac21ba0edf2244b2",
- "title": "Assignment with Divided by Equals",
+ "title": "Compound Assignment With /=",
"description": [
"The /=
operator divides a variable by another number.",
"myVar = myVar / 5;
",