From 8c56b2dfd25f16a1f296951abe2045e33d698abf Mon Sep 17 00:00:00 2001 From: ShreyasMS <134408310+ShreyasMadappady@users.noreply.github.com> Date: Wed, 16 Aug 2023 10:47:17 +0530 Subject: [PATCH] Update 03-forEach-method.js --- 10-Working-With-Arrays/03-forEach-method.js | 1 + 1 file changed, 1 insertion(+) diff --git a/10-Working-With-Arrays/03-forEach-method.js b/10-Working-With-Arrays/03-forEach-method.js index 1973f6a..08aad4a 100644 --- a/10-Working-With-Arrays/03-forEach-method.js +++ b/10-Working-With-Arrays/03-forEach-method.js @@ -25,3 +25,4 @@ movements.forEach(function (mov, i, arr) { Movement 2: You deposited 450 Movement 3: You withdrew 400 ... */ +// You cannot add continue or break statements in forEach Method