From 1c8a56dc2e61d7597ed05699a6af3e58af4cb40c Mon Sep 17 00:00:00 2001 From: Eyad Al-Khalidy <41296016+eyad-alkhalidy@users.noreply.github.com> Date: Sat, 31 May 2025 12:17:09 +0300 Subject: [PATCH] docs: suggest trying array methods for learning practice --- 08_removeFromArray/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/08_removeFromArray/README.md b/08_removeFromArray/README.md index e8164fd3f2..b412695551 100644 --- a/08_removeFromArray/README.md +++ b/08_removeFromArray/README.md @@ -6,6 +6,8 @@ Implement a function that takes an array and some other arguments then removes t removeFromArray([1, 2, 3, 4], 3); // should remove 3 and return [1,2,4] ``` +See if you can make use of some built-in array methods in this exercise. + ## Hints The first test on this one is fairly easy, but there are a few things to think about (or google) here for the later tests: