Closed kamranayub closed 12 years ago
People shouldn't need to do this:
vm.myArray.union(vm.otherArray(), vm.otherArray2());
Instead, it should know to get the raw values:
vm.myArray.union(vm.otherArray, vm.otherArray2);
Applies to any Underscore methods that take an array* argument list.
array*
People shouldn't need to do this:
Instead, it should know to get the raw values:
Applies to any Underscore methods that take an
array*
argument list.