»
S
I
D
E
B
A
R
«
A function for creating the Fibonacci sequence with jQuery
April 20th, 2010 by neil

Here is a little function that I wrote with javascript and jQuery to iterate through all of the Fibonacci numbers that my computer was capable of generating. The computer has a maximum of 1476 interations before you just get infinity. The Fibonacci number at 1476 iterations is 1.3069892237633987e+308.

At the 1477th iteration the function is trying to add 1.3069892237633987e+308 + 8.077637632156222e+307, which is a little bit too much I guess and so all you get is ‘infinity’ as the result.

I had looked at a few other javascript functions for Fibonacci sequences before creating this one but they seemed to take forever to generate say 30-40  numbers and would just cause the browser to hang if you tried to go much higher.

So … to the code

The first part sets up the variable to be used and the array.

The function takes the current value of i and adds it to the previous one using the variable j. This new number is then appended to the array and written to screen at #fibbit which is the paragraph at the bottom.

The form lets you choose how many numbers you want to iterate through.

<script  src=”http://code.jquery.com/jquery-latest.js” language=”javascript”></script>
<script language=”javascript”>

var f = 1;
var fibrange = new Array();

fibrange[0] = 1;
fibrange[1] = fibrange[0];

function fib(x) {

$(‘#fibbit’).text(” “);
$(‘#fibbit’).append(fibrange[0]+’, ‘+fibrange[1]+’, ‘);

for (i=2; i<x; i++){
j = i-1;
k = i-2;

fibrange[i] = fibrange[j] + fibrange[k];

$(‘#fibbit’).append(fibrange[i]+’, ‘);

}

}

</script>

<p>Enter a number to generate a Fibonacci sequence and hit go.</p>

<form>

<input name=”textBox” id=”textBox” type=”text” />

<input name=”send” type=”button” id=”send” value=”go” onclick=”fib(document.getElementById(‘textBox’).value)” />

</form>

<p id=”fibbit”></p>

And that’s about it. You can see a demo of the code here (opens in a new window) .

Feel free to use the code however you like.


122 Responses  
POF Secrets writes:
February 3rd, 2012 at 10:44 pm

Blogs ou should be reading…

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]……

car hire direct writes:
February 3rd, 2012 at 11:25 pm

Great website…

[...]we like to honor many other internet sites on the web, even if they aren’t linked to us, by linking to them. Under are some webpages worth checking out[...]……

Justin Bieber Baby writes:
February 4th, 2012 at 12:20 am

Read was interesting, stay in touch……

[...]please visit the sites we follow, including this one, as it represents our picks from the web[...]……

cellulite treatment writes:
February 4th, 2012 at 1:02 am

Online Article……

[...]The information mentioned in the article are some of the best available [...]……

Scott Tucker Racing writes:
February 4th, 2012 at 5:34 am

Sources…

[...]check below, are some totally unrelated websites to ours, however, they are most trustworthy sources that we use[...]……

BPO Companies writes:
February 4th, 2012 at 5:39 am

Bing results…

While searching Yahoo I discovered this page in the results and I didn’t think it fit…

football training writes:
February 4th, 2012 at 5:53 am

Links…

[...]Sites of interest we have a link to[...]……

Scott Tucker CBS writes:
February 4th, 2012 at 6:24 am

Cool sites…

[...]we came across a cool site that you might enjoy. Take a look if you want[...]……

Scott Tucker CBS writes:
February 4th, 2012 at 6:59 am

You should check this out…

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]……

Scott Tucker CBS writes:
February 4th, 2012 at 7:02 am

Websites worth visiting…

[...]here are some links to sites that we link to because we think they are worth visiting[...]……

Scott Tucker Leawood writes:
February 4th, 2012 at 7:34 am

Websites worth visiting…

[...]here are some links to sites that we link to because we think they are worth visiting[...]……

bpo in real estate writes:
February 4th, 2012 at 3:03 pm

Tumblr article…

I saw someone talking about this on Tumblr and it linked to…

vygone zapper writes:
February 5th, 2012 at 1:30 pm

Blogs ou should be reading…

[...]Here is a Great Blog You Might Find Interesting that we Encourage You[...]……

spinach health benefits writes:
February 5th, 2012 at 1:48 pm

Websites you should visit…

[...]below you’ll find the link to some sites that we think you should visit[...]……

chevy mopar writes:
February 5th, 2012 at 2:14 pm

Visitor recommendations…

[...]one of our visitors recently recommended the following website[...]……

audi wallpapers writes:
February 5th, 2012 at 3:03 pm

Cool sites…

[...]we came across a cool site that you might enjoy. Take a look if you want[...]……

football speed writes:
February 5th, 2012 at 11:35 pm

Recommeneded websites…

[...]Here are some of the sites we recommend for our visitors[...]……

new technology trends for future writes:
February 6th, 2012 at 12:30 am

Awesome website…

[...]the time to read or visit the content or sites we have linked to below the[...]…

4 phases of skill acquisition, 1 & 2 writes:
February 6th, 2012 at 12:59 am

You should check this out…

[...] Wonderful story, reckoned we could combine a few unrelated data, nevertheless really worth taking a look, whoa did one learn about Mid East has got more problerms as well [...]……

Growing Credit Card Debt writes:
February 6th, 2012 at 1:22 pm

Recommeneded websites…

[...]Here are some of the sites we recommend for our visitors[...]……

great gifts writes:
February 6th, 2012 at 1:35 pm

Awesome website…

[...]the time to read or visit the content or sites we have linked to below the[...]……

currency writes:
February 6th, 2012 at 2:01 pm

Superb website…

[...]always a big fan of linking to bloggers that I love but don’t get a lot of link love from[...]……

»  Substance: WordPress   »  Style: Ahren Ahimsa   »  Mod: labK