OK this would return an array of node values
var vals = $('.items').map(function () { return $(this).val(); }).get();
What's the other way around, what's the setter from an array without the usual iteration including each?
Having an array and set each value to the corresponding node from the collection $('.items') using the api.
each?each. I'm just interested in jQuery provided another way for an array setter.