Skip to content

Instantly share code, notes, and snippets.

@SaschaHeyer
Last active February 28, 2018 11:07
Show Gist options
  • Select an option

  • Save SaschaHeyer/56d3906de10328f21eb51b0afa9b85d3 to your computer and use it in GitHub Desktop.

Select an option

Save SaschaHeyer/56d3906de10328f21eb51b0afa9b85d3 to your computer and use it in GitHub Desktop.
forOfLoops
var beers = ['Pils','Weißbier','Weizen'];
for(var beer of beers){
console.log(beer);
}
//output: Pils
//output: Weißbier
//output: Weizen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment