From 3381ce76d887b4d5da078762e5b18a4f42649689 Mon Sep 17 00:00:00 2001 From: Isabelle Viktoria Maciohsek Date: Wed, 6 Jul 2022 13:41:21 +0300 Subject: [PATCH] Update js-remove-element-from-array.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The link to the fast removal trick is broken. I think the correct link should be 'articles/s/js-fast-remove-array-element' 🦆 --- blog_posts/js-remove-element-from-array.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog_posts/js-remove-element-from-array.md b/blog_posts/js-remove-element-from-array.md index 93b64f330..c55d8179e 100644 --- a/blog_posts/js-remove-element-from-array.md +++ b/blog_posts/js-remove-element-from-array.md @@ -40,5 +40,5 @@ Most of the time, `Array.prototype.filter()` is the best option for removing ele ### Alternative options -The previous two options should cover the vast majority of use cases. Yet, there are some other options available for removing elements from an array, which might be preferrable in certain cases. For example, if you like the interface of `Array.prototype.splice()` but need immutability, the [shank snippet](/js/s/shank) might be the solution for you. Similarly, when working with large unsorted arrays, there's a [fast removal trick](/articles/s/js-fast-remove-element-from-array) that might be of interest to you. +The previous two options should cover the vast majority of use cases. Yet, there are some other options available for removing elements from an array, which might be preferrable in certain cases. For example, if you like the interface of `Array.prototype.splice()` but need immutability, the [shank snippet](/js/s/shank) might be the solution for you. Similarly, when working with large unsorted arrays, there's a [fast removal trick](/articles/s/js-fast-remove-array-element) that might be of interest to you.