I don't know how to communicate very well, I meant I don't know why I'd think .add() would work any different than .filter() does.
On Dec 23, 1:38 pm, MorningZ <morni...@gmail.com> wrote: > "I don't know why I assumed it would work this way when .filter() is > the same" > > filter doesn't work the same either... > > as > > http://jsbin.com/imifa/edit > > chaining sticks to the current processed line, it doesn't remember for > later processing unless it's told to :-) > > On Dec 23, 2:07 pm, Scott <polyp...@gmail.com> wrote: > > > > $obj1 = $obj1.add($obj2); > > > Ok, this is what I was missing. > > > I don't know why I assumed it would work this way when .filter() is > > the same.