mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
8 lines
125 B
JavaScript
8 lines
125 B
JavaScript
|
var c = 0;
|
||
|
c++,
|
||
|
new (function () {
|
||
|
(this.a = 0), (c = 1 + (c += 1)), c++;
|
||
|
})(),
|
||
|
c++,
|
||
|
console.log(c);
|