Skip to content

Instantly share code, notes, and snippets.

@reggi
Created May 16, 2014 16:47
Show Gist options
  • Save reggi/dc931d5f273c0037c758 to your computer and use it in GitHub Desktop.
Save reggi/dc931d5f273c0037c758 to your computer and use it in GitHub Desktop.
var _ = require("underscore");
var arr = [];
arr.push("x");
_.each(arr, function(item) {
arr.push("z");
});
console.log(arr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment