From 4c55bde6a03d08dd9350db3cfc5a5dd5dd2acbf4 Mon Sep 17 00:00:00 2001 From: Michelle Ferreirae Date: Tue, 17 Jan 2017 12:22:05 -0800 Subject: [PATCH] Fix "Concatenation" typo --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2727816..4699049 100644 --- a/README.md +++ b/README.md @@ -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? @@ -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"