blob: 8def57f40f96be0f2984d3c4c33dfd68104bc56a [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 - element to be retrieved is own data
property on an Array
---*/
var testResult = false;
function callbackfn(val, idx, obj) {
if (idx === 0) {
testResult = (val === 11);
}
}
[11].forEach(callbackfn);
assert(testResult, 'testResult !== true');