Hacker News new | ask | show | jobs
by zamadatix 64 days ago
Basically?

  // This type of usage creates intermediates
  array.map().filter()
  // But these would not?
  array.values().map().filter().toArray()
  array.values().reduce()