callmepk@lemmy.world to Programmer Humor@lemmy.ml · 1 year agoMe, migrating my code from JavaScript to TypeScript:lemmy.worldimagemessage-square40fedilinkarrow-up1341arrow-down114
arrow-up1327arrow-down1imageMe, migrating my code from JavaScript to TypeScript:lemmy.worldcallmepk@lemmy.world to Programmer Humor@lemmy.ml · 1 year agomessage-square40fedilink
minus-squarefusio@lemmy.worldlinkfedilinkarrow-up21arrow-down1·1 year agothis is terrible advise - you should be using unknown. using any you’re basically disabling TS and will be under the false assumption that your code is ok while it’s most likely missing a lot of runtime checks
this is terrible advise - you should be using
unknown
. usingany
you’re basically disabling TS and will be under the false assumption that your code is ok while it’s most likely missing a lot of runtime checks