Guest User

Untitled

a guest
Dec 10th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. searchFilterFunction = text => {
  2. const newData = this.arrayholder.filter(item => {
  3. const itemData = `${item.id}`;
  4. const textData = text;
  5.  
  6. return itemData.indexOf(textData) > -1;
  7. });
  8. this.setState({ data: newData });
  9. };
Add Comment
Please, Sign In to add comment