summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-4-2.js
blob: 5ed7ad2496523e6a60bb0b2ab2bb3eda6a8fbc45 (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.

/*---
esid: sec-array.prototype.lastindexof
es5id: 15.4.4.15-4-2
description: >
    Array.prototype.lastIndexOf returns -1 if 'length' is 0 ( length
    overridden to null (type conversion))
---*/

var i = Array.prototype.lastIndexOf.call({
  length: null
}, 1);


assert.sameValue(i, -1, 'i');