function fib(n) { if (n <= 1) { return n } else { return fib(n-1) + fib(n-2) } } console.log(fib(Number(process.argv[2])))