Underscore.js 1.7の使い方 Arrays編 without

var r = document.getElementById("r");
r.innerHTML = _.without([0, 1, 2, 3, 2], 2, 3);
// => [0, 1]