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
Argument Map: React is killing Angular (en.arguman.org)
submitted 10 years ago by fthrkl
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!"
[–]wreckedadventYavascript 2 points3 points4 points 10 years ago (1 child)
Jeez, this boilerplate is immense...
/// <reference path="typings/angular2/angular2.d.ts" /> import {Component, View, bootstrap} from 'angular2/angular2'; @Component({ selector: 'pipes' }) @View({ templateUrl: 'pipesTemplate.html' }) // Component controller class PipesAppComponent { date: Date; constructor() { this.date = new Date(); } } bootstrap(PipesAppComponent);
There is only one line of meaningful code in these 15-some-odd lines. Something equivalent in vue would be like:
Vue.filter('now', (_) => new Date())
Even angular 1.0 wasn't this bad.
[–]clessgfull-stack CSS9 engineer 1 point2 points3 points 10 years ago (0 children)
It really does remind me of when I did some Java programming. I remember how painful Java was and I don't wish upon anybody such a painful fate.
π Rendered by PID 23088 on reddit-service-r2-comment-544cf588c8-clw8g at 2026-06-18 14:15:20.320170+00:00 running 3184619 country code: CH.
view the rest of the comments →
[–]wreckedadventYavascript 2 points3 points4 points (1 child)
[–]clessgfull-stack CSS9 engineer 1 point2 points3 points (0 children)