Shortest Fibonacci

Here’s an incredibly short anonymous fibonacci function in Js. It takes a parameter n to calculate the fibonacci number at position n ((n) => (n <= 1 ? n : n - 1 + n - 2))(5);

May 15, 2019 · 1 min · oschvr