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