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