blob: 480a3f27454a9a1e9fdc547bc2f1e4906a4d5bb1 [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 - Array Object can be used as thisArg
---*/
var objArray = [];
function callbackfn(val, idx, obj) {
return this === objArray;
}
assert([11].some(callbackfn, objArray), '[11].some(callbackfn, objArray) !== true');