From dbade6cd11c095b9b7eb2c2b7d29132508f2a760 Mon Sep 17 00:00:00 2001 From: Jimmy Lee Date: Mon, 12 Jun 2017 21:15:35 -0500 Subject: [PATCH] spelling fixes --- 1-js/02-first-steps/05-types/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/02-first-steps/05-types/article.md b/1-js/02-first-steps/05-types/article.md index 9c8cec65..c7f09efc 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -1,6 +1,6 @@ # Data types -A variable in JavaScript can contain any data. A variable can at one moment be a string and later recieve a numeric value: +A variable in JavaScript can contain any data. A variable can at one moment be a string and later receive a numeric value: ```js // no error @@ -8,7 +8,7 @@ let message = "hello"; message = 123456; ``` -Programming languages that allow such thing are called "dynamically typed", meaning that there are data types, but variables are not bound to any of them. +Programming languages that allow such things are called "dynamically typed", meaning that there are data types, but variables are not bound to any of them. There are 7 basic data types in JavaScript. Here we'll study the basics, and in next chapters we'll talk about each of them in detail.