Public
Script
1
2
3
4
import { fib2 as fib22 } from "https://esm.town/v/stevekrouse/fib2";
export let fib2 = (n) =>
n > 2 ? fib22(n - 1) + fib22(n - 2) : 1;
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023