blob: 79f3e73ee5773eb239eea8c25685769b29da5d23 [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-5-12
description: Array.prototype.some - Boolean object can be used as thisArg
---*/
var objBoolean = new Boolean();
function callbackfn(val, idx, obj) {
return this === objBoolean;
}
assert([11].some(callbackfn, objBoolean), '[11].some(callbackfn, objBoolean) !== true');