Node.js:String包含另一个string

我怎样才能检查一个string是否包含另一个string,而不是使用“==”比较整个string?

问候

你可以使用.indexOf()

 if(str.indexOf(substr) > -1) { }