@[email protected] to No Stupid Questions (Developer Edition)@programming.devEnglish • 2 years agoNew to Javascript here, what does Javascript and Typescript have in common ?message-square13fedilinkarrow-up114arrow-down11file-text
arrow-up113arrow-down1message-squareNew to Javascript here, what does Javascript and Typescript have in common ?@[email protected] to No Stupid Questions (Developer Edition)@programming.devEnglish • 2 years agomessage-square13fedilinkfile-text
Do I master Typescript if I master Javascript ? Is Typescript syntax different ? Answers appreciated, thank you !
minus-square@[email protected]linkfedilinkEnglish4•2 years agoTo be a superset, all elements of the subset must be contained within the superset. TypeScript is a superset of JavaScript as valid JS code(just with everything implicitly the any type) is valid TS code.
minus-square@nbafantestlink0•edit-22 years agoOh yeah if you add some sort of typing to the Javascript, sure.
To be a superset, all elements of the subset must be contained within the superset.
TypeScript is a superset of JavaScript as valid JS code(just with everything implicitly the
any
type) is valid TS code.Oh yeah if you add some sort of typing to the Javascript, sure.