function getFib(x) { if(x==1||x==2){ return 1 } return getFib(x-1)+getFib(x-2);}console.log(getFib(12));