Add example code
Type the following code into app.ts
.
1 2 3 4 5 | function sayHello() { const compiler = (document.getElementById( "compiler" ) as HTMLInputElement).value; const framework = (document.getElementById( "framework" ) as HTMLInputElement).value; return `Hello from ${compiler} and ${framework}!`; } |
Please login to continue.