From 9d842b5cf5e50a7255d8e312d5aba07c5c416c95 Mon Sep 17 00:00:00 2001 From: Janitor <199515797+FredTheJanitor@users.noreply.github.com> Date: Sat, 27 Sep 2025 08:22:39 -0400 Subject: [PATCH] fix: wording and grammar in Summary the wording seemed a little bit confusing, and had some unusual grammatical decisions. I tried to capture the spirit of the summary and make it easier for others to understand. --- 1-js/05-data-types/05-array-methods/article.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/1-js/05-data-types/05-array-methods/article.md b/1-js/05-data-types/05-array-methods/article.md index 8536459582..1286ebaa87 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -795,8 +795,8 @@ These methods are the most used ones, they cover 99% of use cases. But there are For the full list, see the [manual](mdn:js/Array). -At first sight, it may seem that there are so many methods, quite difficult to remember. But actually, that's much easier. +At first, looking at a long list of array methods can feel overwhelming. But it’s easier than it looks. -Look through the cheat sheet just to be aware of them. Then solve the tasks of this chapter to practice, so that you have experience with array methods. +Just skim the cheat sheet to get a basic sense of the most common methods, then practice with the tasks below to understand how they work. -Afterwards whenever you need to do something with an array, and you don't know how -- come here, look at the cheat sheet and find the right method. Examples will help you to write it correctly. Soon you'll automatically remember the methods, without specific efforts from your side. +Later in your coding journey, if you get stuck on an array problem, come back to this article. You’ll find an example that fits your situation. With enough practice, you’ll remember the methods naturally and won’t need to check as often.