Q:

use map with filter in react components from arrays of data

<div>
  {names.filter(name => name.includes('J')).map(filteredName => (
    <li>
      {filteredName}
    </li>
  ))}
</div>
0

New to Communities?

Join the community