javascript

fellshard 2016-11-17T03:53:39.000011Z

Angular 2 baffles me in how poorly it reads...

fellshard 2016-11-17T03:53:47.000012Z

*ngFor='let x of xs'

fellshard 2016-11-17T04:03:38.000014Z

Everything about Angular... it's like they need to invent a new syntax, a new arbitrary abstraction for every piece of functional utility.

fellshard 2016-11-17T04:13:47.000015Z

Why do pipes have a completely independent syntax when they are essentially a function call? How does x | currency:'EUR':true help understand or make the code more viable than, say, x | currency('EUR', true) - or, more descriptively, x | currency({ type: 'EUR', symbolic: true })