blob: ce0483b517dbdc51f97a4c5ee007d2ba2d23bc79 [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.some
es5id: 15.4.4.17-1-5
description: Array.prototype.some applied to number primitive
---*/
function callbackfn(val, idx, obj) {
return obj instanceof Number;
}
Number.prototype[1] = true;
Number.prototype.length = 2;
assert(Array.prototype.some.call(5, callbackfn), 'Array.prototype.some.call(5, callbackfn) !== true');