From b8eb62789328ee5a4bdf88d93eacca14cb835319 Mon Sep 17 00:00:00 2001 From: Fitsumhelina Date: Thu, 21 Nov 2024 20:53:09 +0300 Subject: [PATCH] 100% solved --- Test/01-js-refresher.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Test/01-js-refresher.js b/Test/01-js-refresher.js index 3038dfc..f796310 100644 --- a/Test/01-js-refresher.js +++ b/Test/01-js-refresher.js @@ -73,4 +73,5 @@ console.log(itCompanies.shift()) console.log(itCompanies.splice(3, 1)) // Remove the last IT company from the array console.log(itCompanies.pop()) -// Remove all IT companies \ No newline at end of file +// Remove all IT companies +console.log(itCompanies.splice(0)) \ No newline at end of file