Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created September 20, 2015 14:26
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 chuck0523/b99f6f553365c455b236 to your computer and use it in GitHub Desktop.
Save chuck0523/b99f6f553365c455b236 to your computer and use it in GitHub Desktop.
"use strict";
var log = function log(x, index, array) {
console.log(index + ' : ' + x);
};
var ary = [10, 23, 10, 4, 0, 77];
ary.forEach(log);
/*
0 : 10
1 : 23
2 : 10
3 : 4
4 : 0
5 : 77
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment