Skip to content

Instantly share code, notes, and snippets.

@cesarkohl
Created January 13, 2020 14:19
Show Gist options
  • Select an option

  • Save cesarkohl/99e566f79c48d68dc7a5dcda596a5963 to your computer and use it in GitHub Desktop.

Select an option

Save cesarkohl/99e566f79c48d68dc7a5dcda596a5963 to your computer and use it in GitHub Desktop.
var channels = ["A", "B", "C"];
channels.forEach (function (channel) {
 channels.push ("D"); // this item will be ignored
 console.log (channel);
})
console.log (channels);
// ['A', 'B', 'C', 'D', 'D', 'D']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment