aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.4/15.4.4/15.4.4.15/15.4.4.15-9-1.js
blob: 9aacf744bf1c3a3265091f492c8a36be07599985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/// Copyright (c) 2012 Ecma International.  All rights reserved. 
/// Ecma International makes this code available under the terms and conditions set
/// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the 
/// "Use Terms").   Any redistribution of this code must retain the above 
/// copyright and this notice and otherwise comply with the Use Terms.
/**
 * @path ch15/15.4/15.4.4/15.4.4.15/15.4.4.15-9-1.js
 * @description Array.prototype.lastIndexOf returns -1 for elements not present
 */


function testcase() {
  var a = new Array();
  a[100] = 1;
  a[99999] = "";  
  a[10] = new Object();
  a[5555] = 5.5;
  a[123456] = "str";
  a[5] = 1E+309;
  if (a.lastIndexOf(1) !== 100 ||
      a.lastIndexOf("") !== 99999 ||
      a.lastIndexOf("str") !== 123456 ||
      a.lastIndexOf(5.5) !== 5555 ||
      a.lastIndexOf(1E+309) !== 5 )      
  {
    return false;
  }    
  if (a.lastIndexOf(true) === -1 && 
      a.lastIndexOf(5) === -1 &&
      a.lastIndexOf("str1") === -1 &&
      a.lastIndexOf(null) === -1  &&
      a.lastIndexOf(new Object()) === -1 ) 
  {
    return true;
  }
 }
runTestCase(testcase);