输出什么
1.
function foo1(a){
return a + '01';
}

foo1(01);

2.
function foo2(a){
return a + '010';
}

foo2(010);
展开
5