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