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