Hacker News new | ask | show | jobs
by tjchear 1574 days ago
Haven't used solidjs before, but I paid the doc section a quick visit and saw that it's basically <For each={foobar}> where foobar can be whatever javascript code you want. So you can certainly do filter/sort/project on your data before rendering.
1 comments

You’d probably not want to project inside that loop though, but before it, in a reactive effect.