blob: 6c2d9ba217512ab94934c48139dd003e7c78c082 [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.map
description: Array.prototype.map - 'length' is a string containing Infinity
---*/
function callbackfn(val, idx, obj) {
return val < 10;
}
var obj = {
0: 9,
length: "Infinity"
};
assert.throws(RangeError, function() {
Array.prototype.map.call(obj, callbackfn);
});