function fb(n){ if(n<=0){ return 0 } if(n<=2){ return 1 } return fb(n-1)+fb(n-2) } console.log(fb(6))
运行结果
8