Created
December 1, 2016 17:36
-
-
Save craftybones/4127fbe8a4e919348f76d47350ec8620 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var printFibo=function(n) { | |
var s1=0; | |
var s2=1; | |
var s3; | |
for (var i = 0; i < n; i++) { | |
console.log(s2); | |
s3=s1+s2; | |
s1=s2; | |
s2=s1+s2; | |
} | |
} | |
var printEvenFibo=function(n) { | |
var s1=0; | |
var s2=1; | |
var s3; | |
for (var i = 0; i < n; i++) { | |
if(s2%2==0) | |
console.log(s2); | |
s3=s1+s2; | |
s1=s2; | |
s2=s1+s2; | |
} | |
} | |
printFibo(10); | |
printEvenFibo(10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment