说明以下代码输出情况
function a(){
console.log('a');
c();
}
function b(){
console.log('b');
a();
}
function c(){
console.log('c')
}
a();
b();
c();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function a(){
console.log('a');
c();
}
function b(){
console.log('b');
a();
}
function c(){
console.log('c')
}
a();
b();
c();