I would like to check the nullable object to toUpperCase.
Here is example=>
this.state.holidays.filter(e=>e.holidd.toUpperCase().includes(this.state.searchvalue.toUpperCase()) ||
e.holidesc.toUpperCase().includes(this.state.searchvalue.toUpperCase()));
This holidesc
is can be null and null value can't check toUpperCase.So How can I save check?