function fun(n) { if (n < 0){ return 0 } if (n === 1){ return 1 } if (n === 2){ return 2 } return fun(n-1) }console.log(fun(4)) //为什么结果是2呢? 查看完整描述