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
<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; |
NewerOlder