es6includes的⽤法----判断⼀个字符串或数组是否包含⼀个指定
的值
句法:
str.includes(searchString , [position])
searchString在此字符串内搜索的字符串。
position可选的字符串中开始搜索的位置searchString。(默认为0)。
indexof能用于数组吗返回值:
true:如果搜索字符串在给定字符串内的任何地⽅到;返回true
false:如果没有到返回false
描述:
此⽅法可让您确定⼀个字符串是否包含另⼀个字符串。
该includes()⽅法区分⼤⼩写。例如,以下表达式返回false:
'Blue Whale'.includes('blue'); // returns false
运⽤:
var str = 'To be, or not to be, that is the question.';
console.log(str.includes('To be')); // true
console.log(str.includes('question')); // true
console.log(str.includes('nonexistent')); // false
console.log(str.includes('To be', 1)); // false
console.log(str.includes('TO BE')); // false
填充⼯具:
此⽅法已添加到ECMAScript 2015规范中,可能尚未在所有JavaScript实现中提供。但是,您可以轻松地填充此⽅法:
if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
'use strict';
if (typeof start !== 'number') {
start = 0;
}
if (start + search.length > this.length) {
return false;
} else {
return this.indexOf(search, start) !== -1;
}
};
}
不过填充⼯具是什么。最后⼀点没有看懂
补充es5
es5中是⽤indexOf的命令来查的,存在的返回的是索引值,不存在返回-1,但是NaN查不出来,因为NaN!==NaN
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论