Skip to content

Commit 603a8a3

Browse files
authored
Fix spelling of concatenation
1 parent 8a41a63 commit 603a8a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please note that the JSON object is accessible by typing `data` in your console.
1919
- Using Dot Notation
2020
* Looping over Arrays/Lists
2121
- Using the current index of the loop
22-
* Combining Strings using Concatination
22+
* Combining Strings using Concatenation
2323
- Creating HTML strings
2424

2525
## What is JSON?
@@ -95,8 +95,8 @@ list.forEach(function(value, i){
9595
```
9696

9797

98-
## What is Concatination?
99-
When we combine strings together, it's known as "concatination". Here's an example:
98+
## What is Concatenation?
99+
When we combine strings together, it's known as "concatenation". Here's an example:
100100

101101
```
102102
"1" + "1"; //=> "11"

0 commit comments

Comments
 (0)