function fbnq(n){ if(n===1) return 1; if(n===2) return 1; return fbnq(n-1)+fbnq(n-2); } console.log(fbnq(3));