How to use includes method ignoring the case in JavaScript

1 Answer

0 votes
const str = "javascript php c c++";

const substr = 'PHP';

console.log(str.toLowerCase().includes(substr.toLowerCase()));
    
    
    
    
/*
run:
    
true
    
*/

 



answered Jul 12, 2022 by avibootz

Related questions

1 answer 129 views
1 answer 132 views
1 answer 182 views
1 answer 156 views
1 answer 164 views
1 answer 149 views
1 answer 145 views
...