Code to Image Generator
Convert your code snippets into beautiful, shareable images with syntax highlighting.
Code Input
Loading code editor...
Settings
Preview
1function fibonacci(n) {
2 if (n <= 1) return n;
3 return fibonacci(n - 1) + fibonacci(n - 2);
4}
5
6console.log(fibonacci(10));