mirror of https://github.com/tc39/test262.git
22 lines
576 B
JavaScript
22 lines
576 B
JavaScript
function shouldBe(actual, expected) {
|
|
if (actual !== expected)
|
|
throw new Error('bad value: ' + actual);
|
|
}
|
|
|
|
{
|
|
let array = [42.195, -0.0, -Infinity];
|
|
shouldBe(array.lastIndexOf(Infinity), -1);
|
|
shouldBe(array.lastIndexOf(-Infinity), 2);
|
|
shouldBe(array.lastIndexOf(42), -1);
|
|
}
|
|
{
|
|
let array = [1, 2, 3, 0];
|
|
shouldBe(array.lastIndexOf(Infinity), -1);
|
|
shouldBe(array.lastIndexOf(-Infinity), -1);
|
|
}
|
|
{
|
|
let array = ["String", 42.5, Infinity, 33];
|
|
shouldBe(array.lastIndexOf(Infinity), 2);
|
|
shouldBe(array.lastIndexOf(-Infinity), -1);
|
|
}
|