Files

17 lines
460 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Concatenating Strings with Plus Operator
---
# Concatenating Strings with Plus Operator
2018-10-12 15:37:13 -04:00
---
## Hints
### Hint 1
2018-10-12 15:37:13 -04:00
Concatenate means to link together. Think of the '+' operator like a chain linking strings together; add the strings just like you add numbers. Make sure your spelling is correct! Take note of spaces between words.
```javascript
var str = "Good " + "job!"; // It says "Good job!"
var abc = "Good" + "job!"; // It says "Goodjob!"
```