Skip to content

Run it in the Browser

Video Lecture

Run it in the Browser Run it in the Browser

Description

Create a file called foo.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<!DOCTYPE html>
<html>
    <head>
        <title>TypeScript Crash Course</title>
    </head>

    <body>
        <script src="foo.js"></script>
    </body>
</html>

Add these lines to the end of your foo.ts

1
2
3
try {
    document.body.innerHTML = fred.getGarply()
} catch (e) {}

Recompile

tsc foo.ts

And open foo.html in your browser.