mirror of https://github.com/tc39/test262.git
21 lines
436 B
JavaScript
21 lines
436 B
JavaScript
function shouldBe(actual, expected) {
|
|
if (actual !== expected)
|
|
throw new Error('bad value: ' + actual);
|
|
}
|
|
|
|
{
|
|
let array = [42.195, -0.0];
|
|
shouldBe(array.indexOf(0), 1);
|
|
shouldBe(array.indexOf(-0), 1);
|
|
}
|
|
{
|
|
let array = [42.195, 0, -0.0];
|
|
shouldBe(array.indexOf(0), 1);
|
|
shouldBe(array.indexOf(-0), 1);
|
|
}
|
|
{
|
|
let array = [42, 0];
|
|
shouldBe(array.indexOf(0), 1);
|
|
shouldBe(array.indexOf(-0), 1);
|
|
}
|