From 173c5786ab7a5441982201251013b566b980ddda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdurrahman=20Ayy=C4=B1ld=C4=B1z?= Date: Tue, 2 Aug 2022 18:20:44 +0300 Subject: [PATCH] Update 05_day_arrays.md --- 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..4ec4032 100644 --- a/05_Day_Arrays/05_day_arrays.md +++ b/05_Day_Arrays/05_day_arrays.md @@ -522,7 +522,7 @@ Splice: It takes three parameters:Starting position, number of times to be remov ```js const numbers = [1, 2, 3, 4, 5] numbers.splice() - console.log(numbers) // -> remove all items + console.log(numbers) // -> don't remove any items ```