From 0bc8ab6aa2514150a7591f63b3e0c7e19f938949 Mon Sep 17 00:00:00 2001 From: Pedro Pimenta Date: Sat, 9 May 2020 00:27:26 +0200 Subject: [PATCH] Fix a small text typo --- 1-js/02-first-steps/05-types/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/05-types/article.md b/1-js/02-first-steps/05-types/article.md index e3190078..dcadd5ed 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -4,7 +4,7 @@ A value in JavaScript is always of a certain type. For example, a string or a nu There are eight basic data types in JavaScript. Here, we'll cover them in general and in the next chapters we'll talk about each of them in detail. -We can put any type in a variable. For exampple, a variable can at one moment be a string and then store a number: +We can put any type in a variable. For example, a variable can at one moment be a string and then store a number: ```js // no error