blob: 432278a0f1c0ad2b78fdb780132578685ea99aa7 [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 - thisArg is Array
---*/
var res = false;
var a = new Array();
a.res = true;
var result;
function callbackfn(val, idx, obj)
{
result = this.res;
}
var arr = [1];
arr.forEach(callbackfn, a)
assert.sameValue(result, true, 'result');