0
I have a table consisting of datas where some are null.I want to use search filter but tolowercase error occurs beacuse of null
Null values causes to lowercase() to not work
1 Réponse
0
Show your code.
// Example to filter
// ['jhona','Jgosadsn',null,'21jods',undefined, NaN, false,'mart'].filter(e=>e);
// Out code: ["jhona", "Jgosadsn", "21jods", "mart"]