From e6ad338a76c0e0b072285cdaf8e6105ff1e2dad1 Mon Sep 17 00:00:00 2001 From: Mau Di Bert Date: Tue, 2 Jul 2019 09:37:47 -0300 Subject: [PATCH] Update article.md I think this work better --- 1-js/09-classes/05-extend-natives/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/09-classes/05-extend-natives/article.md b/1-js/09-classes/05-extend-natives/article.md index f85aa024..ade0a4eb 100644 --- a/1-js/09-classes/05-extend-natives/article.md +++ b/1-js/09-classes/05-extend-natives/article.md @@ -34,7 +34,7 @@ Even more, we can customize that behavior. We can add a special static getter `Symbol.species` to the class. If exists, it should return the constructor that JavaScript will use internally to create new entities in `map`, `filter` and so on. -If we'd like built-in methods like `map`, `filter` will return regular arrays, we can return `Array` in `Symbol.species`, like here: +If we'd like built-in methods like `map` or `filter` to return regular arrays, we can return `Array` in `Symbol.species`, like here: ```js run class PowerArray extends Array {