mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 21:21:31 +03:00
37 lines
650 B
JavaScript
37 lines
650 B
JavaScript
|
var a;
|
||
|
a = condition ? true : false;
|
||
|
a = !condition ? true : false;
|
||
|
a = condition() ? true : false;
|
||
|
a = condition ? !0 : !1;
|
||
|
a = !condition ? !null : !2;
|
||
|
a = condition() ? !0 : !-3.5;
|
||
|
if (condition) {
|
||
|
a = true;
|
||
|
} else {
|
||
|
a = false;
|
||
|
}
|
||
|
if (condition) {
|
||
|
a = !0;
|
||
|
} else {
|
||
|
a = !1;
|
||
|
}
|
||
|
a = condition ? false : true;
|
||
|
a = !condition ? false : true;
|
||
|
a = condition() ? false : true;
|
||
|
a = condition ? !3 : !0;
|
||
|
a = !condition ? !2 : !0;
|
||
|
a = condition() ? !1 : !0;
|
||
|
if (condition) {
|
||
|
a = false;
|
||
|
} else {
|
||
|
a = true;
|
||
|
}
|
||
|
if (condition) {
|
||
|
a = !1;
|
||
|
} else {
|
||
|
a = !0;
|
||
|
}
|
||
|
a = condition ? 1 : false;
|
||
|
a = !condition ? true : 0;
|
||
|
a = condition ? 1 : 0;
|