var d = 0;
function test(){
d++
if(d>3){return '成功'}
test()
}
console.log(test()) //undefined
<--------------------------------->
return test()
console.log(test()) //成功
橋本奈奈未
相关分类