Source: https://www.youtube.com/watch?v=d56mG7DezGs
Folder: /home/jaume/Projects/0_Tutorials/typescript_course_2
Typescript is a programming language that is a superset of Javascript and provides static types for the language.
// variable_name:type) = value
let number:string = 10;
number = 'a' //ERROR!
Typescript can be used where Javascript is used, in the frontend or the backend.
Typescript compiles to javascript, this called Transpilation.
Typescript is good por medium or large projects and JS to small ones.
We’ll use Node.js to run or project.