From 0305a0b86496db444a84b93a43e221d6e8e7642b Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Fri, 15 Apr 2022 08:03:25 +0300 Subject: [PATCH] minor fixes --- 1-js/04-object-basics/08-symbol/article.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/1-js/04-object-basics/08-symbol/article.md b/1-js/04-object-basics/08-symbol/article.md index 7b7d8a4b..62b2cdf3 100644 --- a/1-js/04-object-basics/08-symbol/article.md +++ b/1-js/04-object-basics/08-symbol/article.md @@ -1,9 +1,14 @@ # Symbol type -By specification, object property keys may be either of string type, or of symbol type. Not numbers, not booleans, only strings or symbols, these two types. +By specification, object property keys may be either of two primitive types: -Till now we've been using only strings. Now let's see the benefits that symbols can give us. +- string type, or +- symbol type. + +Till now we've been using only strings. + +Now let's explore symbols, see what they can do good for us. ## Symbols