mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 10:37:56 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
8 lines
114 B
JavaScript
8 lines
114 B
JavaScript
function f5(b) {
|
|
var a = (function () {
|
|
return b;
|
|
})();
|
|
return b++ + a;
|
|
}
|
|
console.log(f5(1));
|