JavaScript vs Typescript (dynamic vs static)

preview_player
Показать описание
A Short about one of the differences between JavaScript and TypeScript. JavaScript is a dynamically-typed language and TypeScript extends JavaScript to make it a statically-typed language.

Рекомендации по теме
Комментарии
Автор

That was so clearly explained thank you!

alexkatsanos
Автор

can Ts be wrong sometimes ? or just it is me who missed something
e.g
I have a map "video"
I wanna use vide.get("title"). it shows an error so Before using it, I shall write
if(!vidoe.get(title)) return ....
so then if it is not I can use it however I want
But it still shows me error

kuroisan