Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created November 27, 2017 14:12
Show Gist options
  • Save seogi1004/1a234df97271211f641249431b2e154a to your computer and use it in GitHub Desktop.
Save seogi1004/1a234df97271211f641249431b2e154a to your computer and use it in GitHub Desktop.
var each = function(arr, callback) {
for(i = 0; i < arr.length; i++) {
callback(i, arr[i]);
}
};
onload=function() {
var test = [ { name : 'a' }, { name : 'b' }, { name : 'c' } ];
each(test, function(index, elem) {
alert(index + " = " + elem.name);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment