summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/forEach/15.4.4.18-7-c-ii-11.js
blob: 424436dedab4ea45b050f39a51dd360b687e9930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.4.4.18-7-c-ii-11
description: >
    Array.prototype.forEach - callbackfn is called with 2 formal
    parameter
---*/

        var result = false;
        function callbackfn(val, idx) {
            result = (val > 10 && arguments[2][idx] === val);
        }

        [11].forEach(callbackfn); 

assert(result, 'result !== true');