nodejs if contains

Solutions on MaxInterview for nodejs if contains by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "nodejs if contains"
Domenico
11 May 2019
1if (your_string.indexOf('hello') > -1)
2{
3  alert("hello found inside your_string");
4}
5