Hacker News new | ask | show | jobs
by fendy3002 1672 days ago
Exactly my experience. Coming from C# around year 2014s to php then nodejs (due to company setup), typescript is the best of both worlds.

Won't be back to static typing for a while unless I'll need higher precision and higher reliability module.

1 comments

Damn, I’m missing Union Types in C# so much! Typescript make it so simple to compose types.
Indeed. Union, intersection types are godsend. Furthermore arguments don't need to be class instances / explicit type, object with fulfilled properties are enough. It's much much easier to work especially during templating / developing engine.