November 2019
Beginner
804 pages
20h 1m
English
So, TypeScript is a superset of JavaScript, right? Let's see what that actually means by following these steps:
You can do it from within VS Code:

As you can see, VS Code directly recognizes TypeScript files:

var hello = "Hello world";function say(something) { console.log(something);}say(hello);
Now let's do a silly thing: let's ask Node (our JavaScript interpreter) to execute ...
Read now
Unlock full access