← Back to Tutorial
TypeScript Compiler
TypeScript Code
Clear
Compile ▶
interface User { id: number; name: string; email: string; } function createUser(id: number, name: string, email: string): User { return { id, name, email }; } const user: User = createUser(1, "Alice", "alice@example.com"); console.log(user);
Output
Download JS
TypeScript code will be compiled here