标签: javascript node.js string
如何检查字符串是否包含另一个字符串而不是使用“==”来比较整个字符串?
此致
答案 0 :(得分:190)
您可以使用.indexOf():
.indexOf()
if(str.indexOf(substr) > -1) { }