blob: 8089c6836868755a0a2cda94944fa49deb43247f [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-2-18
description: >
Array.prototype.forEach applied to String object, which implements
its own property get method
---*/
var result = false;
function callbackfn(val, idx, obj) {
result = (obj.length === 3);
}
var str = new String("012");
Array.prototype.forEach.call(str, callbackfn);
assert(result, 'result !== true');