From 0c0510e97d779f9a81bcc4b9f9d879a1c285cff0 Mon Sep 17 00:00:00 2001 From: SaintPeter Date: Wed, 30 Dec 2015 20:52:54 -0800 Subject: [PATCH] Improve Concatenation Strings Descriptions --- .../basic-javascript.json | 2 ++ 1 file changed, 2 insertions(+) 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 fe0318e0ac..8899ff2f41 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -951,6 +951,7 @@ "In JavaScript, when the + operator is used with a String value, it is called the concatenation operator. You can build a new string out of other strings by concatenating them together.", "Example", "
'My name is Alan,' + ' I concatenate.'
", + "Note
Watch out for spaces. Concatenation does not add spaces between concatenated strings, so you'll need to add them yourself.", "

Instructions

", "Build myStr from the strings \"This is the start. \" and \"This is the end.\" using the + operator." ], @@ -985,6 +986,7 @@ "title": "Concatenating Strings with the Plus Equals Operator", "description": [ "We can also use the += operator to concatenate a string onto the end of an existing string variable. This can be very helpful to break a long string over several lines.", + "Note
Watch out for spaces. Concatenation does not add spaces between concatenated strings, so you'll need to add them yourself.", "

Instructions

", "Build myStr over several lines by concatenating these two strings:
\"This is the first sentence. \" and \"This is the second sentence.\" using the += operator." ],