Skip to content

Instantly share code, notes, and snippets.

@ChrisCates
Last active January 19, 2017 22:00
Show Gist options
  • Save ChrisCates/111a776343a4628a90f48dea2cbd03ec to your computer and use it in GitHub Desktop.
Save ChrisCates/111a776343a4628a90f48dea2cbd03ec to your computer and use it in GitHub Desktop.
function listener(callback) {
var objects = [1, 2, 3, 4, 5];
objects = objects.map(function(o, i) {
return o + 1;
});
// objects = [2, 3, 4, 5, 6]
return callback(objects);
}
listener(function(objects) {
console.log("The result is:");
console.log(objects);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment