From b7cb037de8a401540a04535ff47925e37a7b1a28 Mon Sep 17 00:00:00 2001 From: Amaldev <> Date: Mon, 20 Feb 2023 11:50:16 +0530 Subject: [PATCH] #582: Fixed Typo-In-DAY5 --- 05_Day_Arrays/05_day_arrays.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05_Day_Arrays/05_day_arrays.md b/05_Day_Arrays/05_day_arrays.md index 0dae635..8a83a78 100644 --- a/05_Day_Arrays/05_day_arrays.md +++ b/05_Day_Arrays/05_day_arrays.md @@ -521,7 +521,7 @@ Splice: It takes three parameters:Starting position, number of times to be remov ```js const numbers = [1, 2, 3, 4, 5] - numbers.splice() + numbers.splice('') console.log(numbers) // -> remove all items ```