blob: e17e0f6ff5c2c61d07bd2ae5c827c41c36560956 [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
es5id: 15.4.4.17-7-c-iii-11
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');