Skip to content

Instantly share code, notes, and snippets.

@Subangkar
Last active July 27, 2019 16:23
Show Gist options
  • Save Subangkar/94568348bce551184bdc64af81b3d326 to your computer and use it in GitHub Desktop.
Save Subangkar/94568348bce551184bdc64af81b3d326 to your computer and use it in GitHub Desktop.
// for each loop
var a = ["a", "b", "c"];
a.forEach(function(entry) {
console.log(entry);
return true; // works like break
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment