#javascript
Read more stories on Hashnode
Articles with this tag
Guess the outputs without executing the code var foo = function(){ var args = Array.prototype.slice.call(arguments); ...
Can’t Skip an Iteration with "Continue" const arr = [1, 2, 3, 4, 5, 6, 7] arr.forEach((val) => { if (val === 3) { continue; } ...