blob: 1b83118f21fb9a7b3171871922f577a6eef44d7c [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.some
description: >
Array.prototype.some - return value of callbackfn is a number
(value is -Infinity)
---*/
function callbackfn(val, idx, obj) {
return -Infinity;
}
assert([11].some(callbackfn), '[11].some(callbackfn) !== true');