Created
January 13, 2020 14:18
-
-
Save cesarkohl/7b1958a48a11802c0496c172a6fe27b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var channels = ["A", "B", "C"]; | |
| channels.forEach(function(channel) { | |
| channels.push("D"); // this item will be ignored | |
| console.log(channel); | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment