From 4699fceacd256deffd2d63b4fd2e0f5ab2ba813a Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Mehta <93569162+Abhi865625@users.noreply.github.com> Date: Sun, 2 Jun 2024 09:15:27 +0530 Subject: [PATCH] Update Interview-questions-answers By mistake you have written five instances it should be four --- Interview-questions-answers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interview-questions-answers b/Interview-questions-answers index 279641a..159c0aa 100644 --- a/Interview-questions-answers +++ b/Interview-questions-answers @@ -58,7 +58,7 @@ for (var i = 1; i < 5; i++) { console.log(i); }, 1000); } -Answer: The output will be five instances of the number 5. +Answer: The output will be four instances of the number 5. ----------------------------------------------------------------- 8. How to empty an array in javascript? 1. array=[]