Underscore.js 1.7の使い方 Arrays編 union

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