Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Please note that the JSON object is accessible by typing `data` in your console.
- Using Dot Notation
* Looping over Arrays/Lists
- Using the current index of the loop
* Combining Strings using Concatination
* Combining Strings using Concatenation
- Creating HTML strings

## What is JSON?
Expand Down Expand Up @@ -95,8 +95,8 @@ list.forEach(function(value, i){
```


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

```
"1" + "1"; //=> "11"
Expand Down