22 lines
325 B
JavaScript
Vendored
22 lines
325 B
JavaScript
Vendored
var global = 0;
|
|
|
|
function se(value) {
|
|
++global;
|
|
return value;
|
|
}
|
|
|
|
function test() {
|
|
var x = true;
|
|
se(x);
|
|
x ? se("foo") : se("bar");
|
|
x || se("bar");
|
|
x && se("foo");
|
|
se(x) ? se("foo") : se("bar");
|
|
}
|
|
|
|
function box() {
|
|
test();
|
|
if (global != 5) return "fail1: " + global;
|
|
|
|
return "OK";
|
|
} |