// Function to calculate the nth Fibonacci number iteratively
function fibonacci(n) {
if (n <= 1) return n;
let a = 0, b = 1;
for (let i = 2; i <= n; i++) {
let temp = a + b;
a = b;
b = temp;
}
return b;
}
// Calculate the 10th Fibonacci number
let nthFibonacci = fibonacci(10);Fibonacci Sequence in JavaScript
javascript
Related Posts
More content you might like
Code
php
Recursive Factorial Calculation in PHP
No preview available for this content.
Jan 26, 2024
Read MoreDiscussion 0
Please sign in to join the discussion.
No comments yet. Be the first to share your thoughts!