20 lines
309 B
JavaScript
20 lines
309 B
JavaScript
negative_zero: {
|
|
options = { evaluate: true }
|
|
input: {
|
|
console.log(
|
|
-"",
|
|
- -"",
|
|
1 / (-0),
|
|
1 / (-"")
|
|
);
|
|
}
|
|
expect: {
|
|
console.log(
|
|
-0,
|
|
0,
|
|
1 / (-0),
|
|
1 / (-0)
|
|
);
|
|
}
|
|
}
|