From 3b2f9f6b7bd7fea5f45a1b328fb52ba6886bab10 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 23 Nov 2017 22:46:19 +0300 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/16-javascript-specials/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/16-javascript-specials/article.md b/1-js/02-first-steps/16-javascript-specials/article.md index 5e64592d..da771b4c 100644 --- a/1-js/02-first-steps/16-javascript-specials/article.md +++ b/1-js/02-first-steps/16-javascript-specials/article.md @@ -90,7 +90,7 @@ There are 7 data types: - `boolean` for logical values: `true/false`, - `null` -- a type with a single value `null`, meaning "empty" or "does not exist", - `undefined` -- a type with a single value `undefined`, meaning "not assigned", -- `object` and `symbol` -- for complex data structures and unique identifiers, we didn't learn them yet. +- `object` and `symbol` -- for complex data structures and unique identifiers, we haven't learnt them yet. The `typeof` operator returns the type for a value, with two exceptions: ```js