2018-09-30 23:01:58 +01:00
---
id: 56533eb9ac21ba0edf2244b8
title: Concatenating Strings with the Plus Equals Operator
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cbQmmC4'
2019-07-31 11:32:23 -07:00
forumTopicId: 16803
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
We can also use the `+=` operator to < dfn > concatenate</ dfn > 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.
2020-03-25 08:07:13 -07:00
Example:
```js
var ourStr = "I come first. ";
ourStr += "I come second.";
// ourStr is now "I come first. I come second."
```
2020-11-27 19:02:05 +01:00
# --instructions--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
Build `myStr` over several lines by concatenating these two strings: `"This is the first sentence. "` and `"This is the second sentence."` using the `+=` operator. Use the `+=` operator similar to how it is shown in the editor. Start by assigning the first string to `myStr` , then add on the second string.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`myStr` should have a value of `This is the first sentence. This is the second sentence.`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(myStr === 'This is the first sentence. This is the second sentence.');
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
You should use the `+=` operator to build `myStr` .
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert(code.match(/myStr\s*\+=\s*(["']).*\1/g));
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --after-user-code--
2018-09-30 23:01:58 +01:00
```js
2018-10-20 21:02:47 +03:00
(function(){
if(typeof myStr === 'string') {
return 'myStr = "' + myStr + '"';
} else {
return 'myStr is not a string';
}
})();
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
// Only change code below this line
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
var myStr;
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
var myStr = "This is the first sentence. ";
myStr += "This is the second sentence.";
```