From 139e00158e1fdf35332ecf92955c9333573bb28c Mon Sep 17 00:00:00 2001 From: Camille Menou Date: Mon, 12 Jun 2017 10:46:40 +0200 Subject: [PATCH] Create article.md --- .../01-property-descriptors/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/07-object-oriented-programming/01-property-descriptors/article.md b/1-js/07-object-oriented-programming/01-property-descriptors/article.md index 92d83365..f9830da7 100644 --- a/1-js/07-object-oriented-programming/01-property-descriptors/article.md +++ b/1-js/07-object-oriented-programming/01-property-descriptors/article.md @@ -143,7 +143,7 @@ user.name = "Alice"; // Error ## Non-enumerable -Now let's a custom `toString` to `user`. +Now let's add a custom `toString` to `user`. Normally, a built-in `toString` for objects is non-enumerable, it does not show up in `for..in`. But if we add `toString` of our own, then by default it shows up in `for..in`.