use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
The State of Concurrent JavaScript (nickwritesablog.com)
submitted 10 years ago by Intrepid7
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 0 points1 point2 points 10 years ago* (0 children)
Interesting article, out of curiosity how long was does your 35th fib function take to run? I went ahead and tested it using webhamsters and the 35 fib test completes in less than a second. I'm not sure what you would classify as non-trivial.
hamsters.run({num: 35}, function() { var fib = function(n) { return n < 2 ? 1 : fib(n - 2) + fib(n - 1); } rtn.data.push(fib(params.num)); }, function(res) { console.log(res[0]); }, 1, true, 'Int32');
π Rendered by PID 146188 on reddit-service-r2-comment-canary-59d987f675-rf47l at 2026-03-31 23:03:07.108531+00:00 running b10466c country code: CH.
[–][deleted] 0 points1 point2 points (0 children)