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