Fork me on GitHub
#javascript
<
2016-11-17
>
fellshard03:11:39

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

fellshard03:11:47

*ngFor='let x of xs'

fellshard04:11:38

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

fellshard04:11:47

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 })