Skip to content

Commit ea1b710

Browse files
committed
Merge pull request GitbookIO#26 from dalibormesaric/patch-1
Update concatenation exercise description
2 parents 5a709bb + d989174 commit ea1b710

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

strings/concat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var bigStr = 'Hi ' + 'JS strings are nice ' + 'and ' + 'easy to add';
88

99
---
1010

11-
Add up the different names so that the `fullName` variable. Contains John's complete name.
11+
Add up the different names so that the `fullName` variable contains John's complete name.
1212

1313
```js
1414
var firstName = "John";
@@ -28,4 +28,4 @@ var fullName = firstName + " " + lastName;
2828
assert(fullName === 'John Smith');
2929
```
3030

31-
---
31+
---

0 commit comments

Comments
 (0)