首页 新闻 会员 周边
3
回答数

已解决问题 100 有没有大佬解释一下执行之后为啥是13

function fibonacci(n) { return n<=2 ? 1 : fibonacci(n-1) + fibonacci(n-2) //递归调用 } console.log(fibon