blob: be2457442824f80860c74772f9e0b5afbc336e78 [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 - 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');