From e9762cd450e5d558348ae277fb71dc42c38fa4bb Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Fri, 25 Dec 2015 04:40:03 +0530 Subject: [PATCH] Concatenating Strings with Plus Operator --- .../basic-javascript.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 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 6fe58512ef..7f82747f4a 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -954,9 +954,12 @@ }, { "id": "56533eb9ac21ba0edf2244b7", - "title": "Concatanting Strings with the Plus Operator", + "title": "Concatenating Strings with Plus Operator", "description": [ - "In Javascript the + operator for strings is called the concatanation operator. You can build strings out of other strings by concatanating them together.", + "In JavaScript, the + operator when used with a String value, it is called concatenation operator. You can build a string out of other strings by concatenating them together.", + "", + "'My name is Alan.' + ' And I am able to concatenate.'", + "", "

Instructions

", "Build myStr from the strings \"This is the start. \" and \"This is the end.\" using the + operator.", ""