e8d79@discuss.tchncs.de to Programming@programming.dev · 19 hours agoI'm OK being left behind, thanks!shkspr.mobiexternal-linkmessage-square21linkfedilinkarrow-up1153arrow-down12cross-posted to: [email protected]
arrow-up1151arrow-down1external-linkI'm OK being left behind, thanks!shkspr.mobie8d79@discuss.tchncs.de to Programming@programming.dev · 19 hours agomessage-square21linkfedilinkcross-posted to: [email protected]
minus-squareresipsaloquiturlinkfedilinkarrow-up3·17 hours agoI hear they’re changing the language these things run on from JavaScript to TypeScript. No thanks to the hamster wheel.
minus-squareFeathercrownlinkfedilinkEnglisharrow-up1·7 hours agoTS is a superset of js though, you can still use normal js and probably won’t have to even change the file extension or anything like literally 0 change
minus-squarekboy101222@sh.itjust.workslinkfedilinkEnglisharrow-up5·15 hours agoI mean, Typescript just compiles down to JavaScript. I’m also generally anti a million frameworks, but JavaScript to TypeScript is easy
minus-squareTraister101@lemmy.todaylinkfedilinkarrow-up4·13 hours agoIsn’t it also like opt in? If you don’t annotate a type it just defaults to Any, which is just unchecked like standard JS
minus-squarekboy101222@sh.itjust.workslinkfedilinkEnglisharrow-up2·12 hours agoAs far as I know, it is. Type safety is optional but very useful sometimes
I hear they’re changing the language these things run on from JavaScript to TypeScript.
No thanks to the hamster wheel.
TS is a superset of js though, you can still use normal js and probably won’t have to even change the file extension or anything like literally 0 change
I mean, Typescript just compiles down to JavaScript. I’m also generally anti a million frameworks, but JavaScript to TypeScript is easy
Isn’t it also like opt in? If you don’t annotate a type it just defaults to Any, which is just unchecked like standard JS
Yup
As far as I know, it is. Type safety is optional but very useful sometimes