1Basically, TypeScript is like an extension or "superset" of JavaScript.
2Since JavaScript is a loosely typed language,
3TypeScript enforces the strict use of types.
4Thus, making it a strictly typed language.
1/* TypeScript adds several additional features to JavaScript.
2The most important one is strict typing.
3*/