Underscore.js 1.7の使い方 Arrays編 difference

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