blob: e1434a3567f239ebeee742192345d1595e1fe598 [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 - 'length' is own data property on an Array
---*/
var result = false;
function callbackfn(val, idx, obj) {
result = (obj.length === 2);
}
[12, 11].forEach(callbackfn);
assert(result, 'result !== true');