Skip to content

Instantly share code, notes, and snippets.

View vagon4's full-sized avatar

Vaughan Ramsey vagon4

  • Sydney, Australia
View GitHub Profile
@vagon4
vagon4 / gist:8413208
Last active January 3, 2016 04:59 — forked from sri-rang/gist:1519447
var forEach = function (list, action) {
for (var i = 0; i < list.length; i++) {
action(list[i]);
}
};
var logItem = function (item) {
console.log(item);
};