DEV Community

Discussion on: This is why I hate Typescript

 
michaeljota profile image
Michael De Abreu

You have to notice that you will never have the type safety of Java or C#. Those use an entire different method for type safe and they check on run time.

TS will check as far as it can, and would do it only in build time.

I think this is really important.