##Silly recursion Some of these may actually suprise you, they suprised me so much I felt the need to actually put this together in some fashion.
###Recursive Fib Can cute code win?
(function(n, w, t) {
var fib = function(n,arr) {
if (!arr) { arr = [1,1]; n=n-2; };