blob: 070a95aa45a3f2652e916a4bbf4ebc2dbb37db40 [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-3-18
description: >
Array.prototype.forEach - value of 'length' is a string that can't
convert to a number
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
}
var obj = {
0: 9,
length: "asdf!_"
};
Array.prototype.forEach.call(obj, callbackfn);
assert.sameValue(accessed, false, 'accessed');