简体   繁体   中英

search input by filter method

I made a search input by using filter method but there is a warning with this. What was wrong?

Code picture

1

You have cases in which you don't return anything.

if (conditionA){
    return ...;
} else if (confitionB) {
    return ...;
}
// Nothing gets returned

You should add a return at the end of your function for when coditionA and coditionB are both false

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM