From e23fc081810d5421b28d08d3082ef6acce628179 Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Thu, 24 Dec 2015 05:54:55 +0530 Subject: [PATCH] Initializing Variables with the Equal Operator --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 965ed39957..975a4c1da8 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -134,7 +134,7 @@ "id": "56533eb9ac21ba0edf2244a9", "title": "Initializing Variables with the Equal Operator", "description": [ - "It is common to initialize a variable to a starting value on the same line as it is defined.", + "It is common to initialize a variable to an initial value in the same line as it is declared.", "", "var myVar = 0;", "Creates a new variable called myVar and assigns it an inital value of 0.",