How can we use React to filter an array? ... App.js. <div> {names.filter(name => name.includes('J')).map(filteredName => ( <li> {filteredName} </li> ) ...
確定! 回上一頁