blob: ce97fe026e783484a3d34dbae72576511d22df32 [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 - applied to Array-like object when 'length'
is an own data property
---*/
function callbackfn(val, idx, obj) {
return val > 10;
}
var obj = {
0: 12,
1: 11,
2: 9,
length: 2
};
var testResult = Array.prototype.map.call(obj, callbackfn);
assert.sameValue(testResult.length, 2, 'testResult.length');