Code to Image
Create beautiful code screenshots with syntax highlighting
Processed locally in your browser
Code Input
Preview
code.js
1function fibonacci(n) {
2 if (n <= 1) return n;
3 return fibonacci(n - 1) + fibonacci(n - 2);
4}
5
6// Generate first 10 Fibonacci numbers
7const results = [];
8for (let i = 0; i < 10; i++) {
9 results.push(fibonacci(i));
10}
11console.log(results);