Comment on Big projects are ditching TypeScript… wtf? - The Code Report
Nerd02@lemmy.basedcount.com 1 year agoHow is that related to TS? Aside from the fact that your comment might have just started a civil war (no, vanilla JS is not “good enough”, they created libraries for a reason) this isn’t about using libraries / frameworks. It’s about needing some system to handle type systems to avoid falling in the bottomless pit of:
Uncaught TypeError: Cannot read property of undefined
ChaoticNeutralCzech@feddit.de 1 year ago
I literally don’t know what TypeScript is, lol. I thought it was some enterprise language that compiles to JavaScript for people who cannot handle
document.getElementById(“”)
but will happily assiggn a type to literally everything, just to have the compiler create really weird undecipherable minified JS…fiah@discuss.tchncs.de 1 year ago
then perhaps you should learn about it before you offer your opinion
Nerd02@lemmy.basedcount.com 1 year ago
Then I guess this is what you get for talking about something without knowing what it is lol.
As another user pointed out, TypeScript is a different language (.ts extension) that extends JavaScript, meaning JS code is valid TS code, but TS adds various language features for type checking. Your editor is then able to interpret your code according to these type structures and warn you if you are making any stupid type errors like this one:
Image
The problem many people have with TS (such as the “big projects” mentioned by Fireship) is that sometimes you end up having code that works but still have to do some weird type gymnastics to please the TS compiler and have it remove any errors and warnings.
That being said, frameworks that “create really weird undecipherable minified JS” do have their place, as they allow you to seamlessy do things that would be either very inelegant and verbose or significantly more complex in vanilla JS, but I won’t bore you with an excessively long wall of text.
PS: I love your Czech flag website. Had me jump on my chair when the music started blasting through my headphones.
520@kbin.social 1 year ago
Typescript is basically JavaScript with variable typing. That is, you have to explicitly declare that your variable is a string, int, float, etc.