blob: 524012db22a59fcb3659803fd6956f9c8a3cf141 [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
es5id: 15.4.4.19-2-18
description: >
Array.prototype.map - applied to String object, which implements
its own property get method
---*/
function callbackfn(val, idx, obj) {
return parseInt(val, 10) > 1;
}
var str = new String("432");
String.prototype[3] = "1";
var testResult = Array.prototype.map.call(str, callbackfn);
assert.sameValue(testResult.length, 3, 'testResult.length');