JavaScript 数组 some() 方法
描述
Javascript数组 some() 方法测试数组中的某些元素是否通过提供的函数的测试。
语法
它的语法如下所示 –
array.some(callback[, thisObject]);
参数详情
- callback − 对每个元素进行测试的函数。
-
thisObject − 在执行回调时使用的 this 对象。
返回值
如果有某些元素通过了测试,则返回true,否则返回false。
兼容性
此方法是ECMA-262标准的JavaScript扩展;因此,在该标准的其他实现中可能不存在。要使其起作用,您需要在脚本顶部添加以下代码。
if (!Array.prototype.some) {
Array.prototype.some = function(fun /*, thisp*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this && fun.call(thisp, this[i], i, this))
return true;
}
return false;
};
}
示例
尝试以下示例。
<html>
<head>
<title>JavaScript Array some Method</title>
</head>
<body>
<script type = "text/javascript">
if (!Array.prototype.some) {
Array.prototype.some = function(fun /*, thisp*/) {
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var thisp = arguments[1];
for (var i = 0; i < len; i++) {
if (i in this && fun.call(thisp, this[i], i, this))
return true;
}
return false;
};
}
function isBigEnough(element, index, array) {
return (element >= 10);
}
var retval = [2, 5, 8, 1, 4].some(isBigEnough);
document.write("Returned value is : " + retval );
var retval = [12, 5, 8, 1, 4].some(isBigEnough);
document.write("<br />Returned value is : " + retval );
</script>
</body>
</html>
输出
Returned value is : false
Returned value is : true