Skip to content

Instantly share code, notes, and snippets.

@heryvandoro
Last active October 2, 2018 05:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heryvandoro/d17b51e21663c7ffc2940cd8c18d0fe2 to your computer and use it in GitHub Desktop.
Save heryvandoro/d17b51e21663c7ffc2940cd8c18d0fe2 to your computer and use it in GitHub Desktop.
let numbers = [10, 20, 30];
numbers.forEach(number => {
console.log(number);
});
/* Output :
10
20
30
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment