From 0f91236b111b83aec3734c290c164f662dec779c Mon Sep 17 00:00:00 2001 From: Mustafa Kemal Tuna <12192118+lumosmind@users.noreply.github.com> Date: Tue, 5 Nov 2019 14:24:00 +0300 Subject: [PATCH] computed property name instead of computed propert "computed property" term can make us recall "dynamically computed property" like fullname. And it can create misunderstanding. get fullname(){ return this.name+ ' ' + this.surname; } --- 1-js/09-classes/01-class/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/09-classes/01-class/article.md b/1-js/09-classes/01-class/article.md index 4aaf52bd..93a4b0aa 100644 --- a/1-js/09-classes/01-class/article.md +++ b/1-js/09-classes/01-class/article.md @@ -282,7 +282,7 @@ Object.defineProperties(User.prototype, { }); ``` -Here's an example with a computed property in brackets `[...]`: +Here's an example with a computed property name in brackets `[...]`: ```js run class User {