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