Test case name | Result |
---|---|
array.filter((task) => tests.some((testid) => task.id === testid)) | |
array.filter((task) => tests.includes(task.id)) |
Test name | Executions per second |
---|---|
array.filter((task) => tests.some((testid) => task.id === testid)) | 2927945.8 Ops/sec |
array.filter((task) => tests.includes(task.id)) | 3797363.8 Ops/sec |