2018-09-30 23:01:58 +01:00
---
id: 56533eb9ac21ba0edf2244b7
title: Concatenating Strings with Plus Operator
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cNpM8AN'
2019-08-05 09:17:33 -07:00
forumTopicId: 16802
2021-01-13 03:31:00 +01:00
dashedName: concatenating-strings-with-plus-operator
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
In JavaScript, when the `+` operator is used with a `String` value, it is called the < dfn > concatenation</ dfn > operator. You can build a new string out of other strings by < dfn > concatenating</ dfn > them together.
**Example**
2019-05-17 06:20:30 -07:00
```js
'My name is Alan,' + ' I concatenate.'
```
2020-11-27 19:02:05 +01:00
**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. " + "I come second.";
2020-06-05 07:08:38 -07:00
// ourStr is "I come first. I come second."
2020-03-25 08:07:13 -07:00
```
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` from the strings `"This is the start. "` and `"This is the end."` using the `+` operator.
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 start. This is the end.`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(myStr === 'This is the start. This is the end.');
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
2020-11-27 19:02:05 +01:00
```js
assert(code.match(/(["']).*\1\s*\+\s*(["']).*\2/g));
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`myStr` should be created using the `var` keyword.
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert(/var\s+myStr/.test(code));
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
You should assign the result to the `myStr` variable.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(/myStr\s*=/.test(code));
```
# --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
var myStr; // Change this line
```
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 start. " + "This is the end.";
```