webpack/test/cases/parsing/logical-assignment/module.js

8 lines
97 B
JavaScript
Raw Permalink Normal View History

2021-02-08 03:22:23 +08:00
export default function () {
2020-09-30 02:43:29 +08:00
var x = null;
x ??= true;
x &&= true;
x ||= false;
2021-02-08 03:22:23 +08:00
return x;
2020-09-29 22:44:22 +08:00
}