some()
method tests whether at least one element in the array passes the test implemented by the provided function. It returns a Boolean value.
arr.some(callback(element[, index[, array]])[, thisArg])
callback
A function to test for each element, taking three arguments:
element
The current element being processed in the array.
index
可选
The index of the current element being processed in the array.
array
可选
some()
was called upon.
thisArg
可选
this
when executing
callback
.
true
if the callback function returns a
truthy
value for at least one element in the array. Otherwise,
false
.
some()
method executes the
callback
function once for each element present in the array until it finds the one where
callback
返回
truthy
value (a value that becomes true when converted to a Boolean). If such an element is found,
some()
immediately returns
true
. Otherwise,
some()
返回
false
.
callback
is invoked only for indexes of the array with assigned values. It is not invoked for indexes which have been deleted or which have never been assigned values.
callback
is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.
若
thisArg
parameter is provided to
some()
, it will be used as the callback's
this
value. Otherwise, the value
undefined
will be used as its
this
value. The
this
value ultimately observable by
callback
is determined according to
the usual rules for determining the
this
seen by a function
.
some()
does not mutate the array on which it is called.
The range of elements processed by
some()
is set before the first invocation of
callback
. Elements appended to the array after the call to
some()
begins will not be visited by
callback
. If an existing, unvisited element of the array is changed by
callback
, its value passed to the visiting
callback
will be the value at the time that
some()
visits that element's index. Elements that are deleted are not visited.
Caution
: Calling this method on an empty array returns
false
for any condition!
some()
was added to the ECMA-262 standard in the 5
th
edition, and it may not be present in all implementations of the standard. You can work around this by inserting the following code at the beginning of your scripts, allowing use of
some()
in implementations which do not natively support it.
This algorithm is exactly the one specified in ECMA-262, 5
th
edition, assuming
Object
and
TypeError
have their original values and that
fun
.call
evaluates to the original value of
Function.prototype.call()
.
// Production steps of ECMA-262, Edition 5, 15.4.4.17
// Reference: http://es5.github.io/#x15.4.4.17
if (!Array.prototype.some) {
Array.prototype.some = function(fun, thisArg) {
'use strict';
if (this == null) {
throw new TypeError('Array.prototype.some called on null or undefined');
}
if (typeof fun !== 'function') {
throw new TypeError();
}
var t = Object(this);
var len = t.length >>> 0;
for (var i = 0; i < len; i++) {
if (i in t && fun.call(thisArg, t[i], i, t)) {
return true;
}
}
return false;
};
}
The following example tests whether any element in the array is bigger than 10.
function isBiggerThan10(element, index, array) {
return element > 10;
}
[2, 5, 8, 1, 4].some(isBiggerThan10); // false
[12, 5, 8, 1, 4].some(isBiggerThan10); // true
箭头函数 provide a shorter syntax for the same test.
[2, 5, 8, 1, 4].some(x => x > 10); // false [12, 5, 8, 1, 4].some(x => x > 10); // true
To mimic the function of the
includes()
method, this custom function returns
true
if the element exists in the array:
const fruits = ['apple', 'banana', 'mango', 'guava'];
function checkAvailability(arr, val) {
return arr.some(function(arrVal) {
return val === arrVal;
});
}
checkAvailability(fruits, 'kela'); // false
checkAvailability(fruits, 'banana'); // true
const fruits = ['apple', 'banana', 'mango', 'guava'];
function checkAvailability(arr, val) {
return arr.some(arrVal => val === arrVal);
}
checkAvailability(fruits, 'kela'); // false
checkAvailability(fruits, 'banana'); // true
const TRUTHY_VALUES = [true, 'true', 1];
function getBoolean(value) {
'use strict';
if (typeof value === 'string') {
value = value.toLowerCase().trim();
}
return TRUTHY_VALUES.some(function(t) {
return t === value;
});
}
getBoolean(false); // false
getBoolean('false'); // false
getBoolean(1); // true
getBoolean('true'); // true
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'Array.prototype.some' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
some
|
Chrome 1 | Edge 12 | Firefox 1.5 | IE 9 | Opera 9.5 | Safari 3 | WebView Android ≤37 | Chrome Android 18 | Firefox Android 4 | Opera Android 10.1 | Safari iOS 1 | Samsung Internet Android 1.0 | nodejs 0.1.100 |
完整支持
Array.prototype.every()
Array.prototype.forEach()
Array.prototype.find()
TypedArray.prototype.some()
Array
Array.from()
Array.isArray()
Array.of()
Array.prototype.concat()
Array.prototype.copyWithin()
Array.prototype.entries()
Array.prototype.every()
Array.prototype.fill()
Array.prototype.filter()
Array.prototype.find()
Array.prototype.findIndex()
Array.prototype.flat()
Array.prototype.flatMap()
Array.prototype.forEach()
Array.prototype.includes()
Array.prototype.indexOf()
Array.prototype.join()
Array.prototype.keys()
Array.prototype.lastIndexOf()
Array.prototype.map()
Array.prototype.pop()
Array.prototype.push()
Array.prototype.reduce()
Array.prototype.reduceRight()
Array.prototype.reverse()
Array.prototype.shift()
Array.prototype.slice()
Array.prototype.some()
Array.prototype.sort()
Array.prototype.splice()
Array.prototype.toLocaleString()
Array.prototype.toSource()
Array.prototype.toString()
Array.prototype.unshift()
Array.prototype.values()
Array.prototype[@@iterator]()
get Array[@@species]
Function
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()