Skip to content

Instantly share code, notes, and snippets.

@lxbarth
Created January 12, 2012 16:16
Show Gist options
  • Save lxbarth/1601390 to your computer and use it in GitHub Desktop.
Save lxbarth/1601390 to your computer and use it in GitHub Desktop.
var _ = require('underscore');
var layers = [
'one',
'two',
'three'
];
console.error(layers);
layers = _.without(layers, 'one');
console.error(layers);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment