mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 00:52:29 +03:00
10 lines
149 B
JavaScript
10 lines
149 B
JavaScript
|
console.log(
|
||
|
(function () {
|
||
|
var a = 1,
|
||
|
b = 2,
|
||
|
c = 3;
|
||
|
b = b /= a = c++;
|
||
|
return a + b;
|
||
|
})()
|
||
|
);
|