802
you are viewing a single comment's thread
view the rest of the comments
[-] Presi300@lemmy.world -2 points 7 months ago

As someone who is relatively new to webdev stuff, I gotta ask... what is the point of typescript? Like, is it faster than JS, does it have more functions or smth? To me it just looks like JS with extra steps and a really, REALLY cursed way to declare variables.

[-] FooBarrington@lemmy.world 12 points 7 months ago* (last edited 7 months ago)

Types help you prevent errors while writing the code instead of while running. That's a massive benefit, as it literally makes a lot of errors impossible (as long as you don't work around it) - otherwise you have to write a lot of tests to get the same guarantees, and you could always miss something by doing that.

The other benefit is that it allows other developers to understand your code very, very quickly. Types describe what your data looks like - there is nothing more important in programming than that!

When you install an NPM library and your editor gives you hints about parameter types, return types etc., that's all Typescript types at work.

[-] purpleprophy@feddit.uk 4 points 7 months ago

After maintaining a huge JS codebase for years and finally upgrading it to TS, my life is so much easier. Refactoring is faster and less error-prone. I no longer have to manually document the parameter/return types for every function. I don't have that gnawing "oh damn, what if I missed something" feeling whenever I make changes.

Yes it's a bit more work up front but it pays dividends on larger codebases.

load more comments (1 replies)
load more comments (9 replies)
this post was submitted on 14 Nov 2023
802 points (94.5% liked)

Programmer Humor

31229 readers
734 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS