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