mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 15:21:26 -05:00
7 lines
93 B
Text
7 lines
93 B
Text
const a = function() {
|
|
const a = "a";
|
|
return {
|
|
a
|
|
};
|
|
}();
|
|
console.log(a);
|