blob: 6d61b65b619b099e8af33d2fabb13ade1bca6f88 [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-7-c-ii-13
description: >
Array.prototype.some - callbackfn that uses arguments object to
get parameter value
---*/
function callbackfn() {
return arguments[2][arguments[1]] === arguments[0];
}
assert([9, 12].some(callbackfn), '[9, 12].some(callbackfn) !== true');