Skip to content

Instantly share code, notes, and snippets.

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

  • Save cesarkohl/7b1958a48a11802c0496c172a6fe27b2 to your computer and use it in GitHub Desktop.

Select an option

Save cesarkohl/7b1958a48a11802c0496c172a6fe27b2 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);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment