📜  nodejs if contains - Javascript代码示例

📅  最后修改于: 2022-03-11 15:03:30.188000             🧑  作者: Mango

代码示例1
if (your_string.indexOf('hello') > -1)
{
  alert("hello found inside your_string");
}