includes()方法,在字符串中使用时,相当于indexOf(),查询成功返回true,失败返回false
includes() 方法用于判断字符串是否包含指定的子字符串。
如果找到匹配的字符串则返回 true,否则返回 false。
注意: includes() 方法区分大小写。
- 查找字符串是否包含 "Runoob":
-
- var str = "Hello world, welcome to the Runoob";
- var n = str.includes("Runoob");
-
-
-
- n 输出结果:
-
- true
1.Array.prototype.includes方法返回一个布尔值,表示某个数组是否包含给定的值,与字符串的includes方法类似。该方法属于 ES7 ,但 Babel 转码器已经支持
- [1, 2, 3].includes(2); // true
-
- [1, 2, 3].includes(4); // false
-
- [1, 2, NaN].includes(NaN); // true
2.该方法的第二个参数表示搜索的起始位置,默认为 0 。如果第二个参数为负数,则表示倒数的位置,如果这时它大于数组长度(比如第二个参数为 -4 ,但数组长度为 3 ),则会重置为从 0 开始。
- [1, 2, 3].includes(3, 3); // false
-
- [1, 2, 3].includes(3, -1); // true