Skip to content

Instantly share code, notes, and snippets.

View dawnerd's full-sized avatar
🌮

Troy Whiteley dawnerd

🌮
View GitHub Profile
@dawnerd
dawnerd / Fibonacci.html
Created November 13, 2010 21:55
Outputs fibonacci numbers in JS
<html>
<head>
<title>fibonacci sequence</title>
</head>
<body>
<p>This will output a ton of numbers and might take a while.</p>
<div id="output"></div>
<script>
var o = '0, 1, ', f = 0, s = 1, n = 1, c = 1000;