How would you translate this query:
var groups = visibleDateRange.select((date, index) => new { Date = date, Index = index })
.GroupBy(p => p.Index / 3);
to a javascript linqJS query?
All the linqJS samples are super simple... no real life stuff.
My problem is how can I return the anonymous object with Date + Index from the select?