summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/indexOf/15.4.4.14-9-b-i-2.js
blob: 6a22313a40c06d83351cab7eb00726a89751c2cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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.14-9-b-i-2
description: >
    Array.prototype.indexOf - element to be retrieved is own data
    property on an Array
includes: [runTestCase.js]
---*/

function testcase() {
        return [true, true, true].indexOf(true) === 0 &&
            [false, true, true].indexOf(true) === 1 &&
            [false, false, true].indexOf(true) === 2;
    }
runTestCase(testcase);