6 lines
71 B
JavaScript
6 lines
71 B
JavaScript
function baz() {}
|
|
function bar() {}
|
|
function foo() {
|
|
bar();
|
|
}
|
|
foo();
|