From fa414afb44b6995ba8eff7d433537b8b4b07c25a Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Thu, 24 Dec 2015 12:50:21 +0530 Subject: [PATCH] Increment a Number with Javascript --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index b253f42162..60c92b2796 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -380,7 +380,7 @@ "id": "56533eb9ac21ba0edf2244ac", "title": "Increment a Number with Javascript", "description": [ - "You can easily increment or add one to a Javascript variable with the ++ operator.", + "You can easily increment or add one to a variable with the ++ operator.", "i++;", "is the equivilent of", "i = i + 1;",