Code Collab AI
JavaScript (Node.js)
Clone
Share
U1
U2
+2
// Welcome to Code Collab AI! // Clone a repository or select a file to start editing. // Use the AI Assistant on the right for help. function fibonacci(n) { if (n <= 1) { return n; } return fibonacci(n - 1) + fibonacci(n - 2); } const result = fibonacci(10); console.log(`Fibonacci(10) is ${result}`);
Terminal
Welcome to the integrated terminal.
You can run git commands or execute your code (e.g. 'node src/main.js').
$