Comment on NodeJS vs Go
Asudox@lemmy.world 1 year agoYeah, I was thinking of using TS anyways. I saw some video that showed how weird JS handles stuff when you try to add two things and such. I also want to make it a habit to type everything anyways.
NewDark@unilem.org 1 year ago
There’s a bit of fiddling with configuration and using npm, but it’s not much overhead. There’s plenty of tsconfig settings to customize the process for your need, but most the defaults are quite sane.
Asudox@lemmy.world 1 year ago
I see, then it won’t be a problem after I learn JS.
NewDark@unilem.org 1 year ago
Well, TS is just JS with strong typing and type annotations. It’s almost the same language, just adding guard-rails and safety checks that the base language doesn’t have.