blob: cdb58aa6e6203e627ae121f32800080273b032c8 [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 - Error object can be used as thisArg
---*/
var objError = new RangeError();
function callbackfn(val, idx, obj) {
return this === objError;
}
var testResult = [11].map(callbackfn, objError);
assert.sameValue(testResult[0], true, 'testResult[0]');