Skip to content

Instantly share code, notes, and snippets.

@valerymelou
Created May 20, 2018 10:23
Show Gist options
  • Save valerymelou/41dcdde91e81746736a3f4d803076ca2 to your computer and use it in GitHub Desktop.
Save valerymelou/41dcdde91e81746736a3f4d803076ca2 to your computer and use it in GitHub Desktop.
var digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
for (var i = 0; i < digits.length; i++) {
console.log(digits[i]);
}
/**
0
1
2
3
4
5
6
7
8
9
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment