fibonacci series
// Fibonacci Series
0,1,1,2,3,5,8,13,21,34,55,89,144......
fibonacci series
// Fibonacci Series
0,1,1,2,3,5,8,13,21,34,55,89,144......
fibonacci series
#fibonacci series is special type of sequence
#fibonacci series is somethinng liket this-->
#0,1,1,2,3,5,8,13,21,34,55,89.......
#addition of former two succesive number results in the third element.
#in simple way as given in above series that 0,1,1--> where 0+1=1 e,i; 1
#example: 2,3,5 addition of 2 and 3 results in latter element in sequence e,i 5
8,13,21 : 8 + 13=21
34,55,89: 34 + 55=89
fibonacci series
// FIBONACCI SERIES
// 0 1 1 2 3 5 8 13
let number = 7;
// let a=0,b =1,next;
let a=-1,b=1,next;
for(let i=1;i<=number;i++){
next= a + b;
a = b;
b = next
console.log(next)
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us