Kanso.js is a tool to easily let you build couchapps. As can be read in the documentation it includes the underscore.js module.
But how can I exactly make use of the underscore.js methods in, let's say, a list view? Do I have to require it first? For example I have been playing around a but with the union method:
var newArray = oldArray1.union(oldArray2)
or
var newArray = union(oldArray1, oldArray2)
However, Kanso keeps on raising a typeError when requesting the list over HTTP.