difference of typescript and javascript code example

Example 1: TypeScript vs JavaScript

TypeScript adds strict typing to JavaScript.
It helps to reduce the number of errors in your code.

Apart from strict typing, TypeScript introduces
a plethora of features like Interfaces, Mixin classes, Enums
and much more, as discussed later in the article.

Example 2: typescript vs javascript

They are really almost the same theres not the same param types like
JAVASCRIPT is function myFunction(param)
while typescript is
function myFunction(the_param: something)