score:1

Accepted answer

combining two filters means you need both to apply. in other words, you need (condition 1) and (condition 2).

so basically:

<table
  data={
    array
      .filter((a) => a.kind === showbykind && a.name === filtervalue)
      .sort(someirrelevantsortmethod)
  }
>

Related Query

More Query from same tag