Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 416 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 416 Bytes

TypeScript

My Tutorial on TypeScript

  • Function
  • Classes
  • Class Inheritance
  • Class Modifiers
  • Interface

And a lot more on object oriented programming.

To run a TypeScript

tsc -w filename.ts

To Compile a TypeScript file into a JavaScript file, when you run the first line of code a JS file is compiled at runtime.

tsc filename.ts
node filename.js

compilerOptions :{ target:ES6 }