Talk:Unrolling recursive JavaScript functions

From Jimbojw.com

Jump to: navigation, search

Comments on Unrolling recursive JavaScript functions

Note: Due to a recent influx of spam messages on this page, comments are now being moderated. Your comment will appear once it has been approved.
Leave a comment
Sorry, comments are disabled.

Mike said ...

for (var i=0; i<toscan.length; i++) can be better written as for (i=0; toscan[i]; i++)

--Mike 12:29, 25 November 2008 (MST)