this post was submitted on 08 Oct 2023
29 points (73.8% liked)
Programming
17313 readers
388 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
That is an important difference. Still lots of people, myself included, classify "compiler printing an error (not a warning)" as failure, even if bizzarly the code still runs somehow.
That's because you're missing the distinction between compiler and type checker. The compiler doesn't check types, it strips them. The type checker only checks types, it doesn't compile. They are often used in conjunction, though increasingly the compilation is done by e.g. esbuild.
But there is nothing "bizarre" about the code running, since literally, TS is a superset of JS.