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