summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-8-b-ii-1.js
blob: c511309121dbdf89db6baaac23a8d1a6df4c5369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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.15-8-b-ii-1
description: >
    Array.prototype.lastIndexOf - type of array element is different
    from type of search element
includes: [runTestCase.js]
---*/

function testcase() {

        return ["true"].lastIndexOf(true) === -1 &&
            ["0"].lastIndexOf(0) === -1 &&
            [false].lastIndexOf(0) === -1 &&
            [undefined].lastIndexOf(0) === -1 &&
            [null].lastIndexOf(0) === -1 &&
            [[]].lastIndexOf(0) === -1;
    }
runTestCase(testcase);