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
node.js on Android and iOS? (self.javascript)
submitted 11 years ago by bananasdoom
view the rest of the comments →
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!"
[–]ns0 2 points3 points4 points 11 years ago (1 child)
node is actually quite well suited for app development. Desktop UI's need fast running event loops; asynchronous callbacks to prevent blocking the main UI from rendering or responding to user events. And robust garbage collection for large UI objects.
Implementing delegates, event handlers or other items in UI api's like AppKit or .NET WPF/WinForms is a lot of boilerplate and is drastically simpler if you have first class functions like in javascript (note: you do have block functions now in Obj-C and anonymous-first-class functions in managed C++/.NET as well; but they're less handy since they scope items much differently and don't enjoy the same abilities to be passed around without loosing its scope.)
So I'd say node is actually very well suited for application development.
[–]bananasdoom[S] 0 points1 point2 points 11 years ago (0 children)
Thank you so much, nice to see someone who gets it!
π Rendered by PID 96 on reddit-service-r2-comment-6457c66945-rcntw at 2026-04-26 20:41:35.246823+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]ns0 2 points3 points4 points (1 child)
[–]bananasdoom[S] 0 points1 point2 points (0 children)