mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 09:26:28 +02:00
8 lines
79 B
JavaScript
8 lines
79 B
JavaScript
var foo = 1;
|
|
function bar() {
|
|
return 38;
|
|
}
|
|
foo = {};
|
|
foo = bar() + 4;
|
|
foo;
|