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