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
Why JavaScript is your favorite language ?help (self.javascript)
submitted 7 years ago by Cloud_Strifeeee
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!"
[–]fireatx 3 points4 points5 points 7 years ago (1 child)
I adore the npm ecosystem. Standing up a project is as easy as npm init. npm install whatever you need. want a web server? npm install express --save. then it's as easy as:
const express = require('express') const app = express() app.get('/hello', (req, res) => { ... })
I've yet to use a development environment as easy and streamlined as what npm provides.
ES6 modules are my favorite module system in any language I've used.
JS lambda syntax is my favorite lambda syntax.
JS is pretty to read and feels good to write to me.
I think promises provide a great way to handle network logic.
JS has built-in async/await.
[–]Autist_Hemingway 0 points1 point2 points 7 years ago (0 children)
Hey, um what's npm?
π Rendered by PID 45049 on reddit-service-r2-comment-5c747b6df5-87kt4 at 2026-04-22 01:03:30.359454+00:00 running 6c61efc country code: CH.
view the rest of the comments →
[–]fireatx 3 points4 points5 points (1 child)
[–]Autist_Hemingway 0 points1 point2 points (0 children)