nodejs if contains

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

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