Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created April 10, 2015 13:44
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 shigemk2/43841073611725af503d to your computer and use it in GitHub Desktop.
Save shigemk2/43841073611725af503d to your computer and use it in GitHub Desktop.
var _ = require('underscore');
// 配列
var array = [5, 10, 15];
_.each(array, function(element, index, array) {
console.log(element + ' : ' + index);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment