Created
December 13, 2019 11:07
-
-
Save Paul-Browne/6ff61d6f7b86a38d3173fd93f4304b98 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var days = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"]; | |
days.forEach( (element, index) => { | |
console.log(element, index); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment