mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +03:00
13 lines
228 B
JavaScript
13 lines
228 B
JavaScript
|
console.log(
|
||
|
(function (a) {
|
||
|
return (function () {
|
||
|
return a + 1;
|
||
|
})();
|
||
|
})(1),
|
||
|
(function (a) {
|
||
|
return (function (a) {
|
||
|
return a === undefined;
|
||
|
})();
|
||
|
})(2)
|
||
|
);
|