This is an untitled note with some quick thoughts...
Sometimes the best ideas come when you're not trying to organize them into a specific structure. This is one of those stream-of-consciousness notes.
// Quick code snippet I don't want to lose
const fibonacci = (n) => n <= 1 ? n : fibonacci(n-1) + fibonacci(n-2);