← Back to Tutorial
TypeScript Compiler
TypeScript Code
Clear
Compile ▶
let counter: number = 0; counter = 5; const PI: number = 3.14159; const username: string = "admin"; const isAuthenticated: boolean = true; function add(a: number, b: number): number { return a + b; }
Output
Download JS
TypeScript code will be compiled here