Skip to content

Instantly share code, notes, and snippets.

@WesleySmits
Created October 10, 2021 09:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WesleySmits/b879c9e846ac6aee57003482d501cdc6 to your computer and use it in GitHub Desktop.
Save WesleySmits/b879c9e846ac6aee57003482d501cdc6 to your computer and use it in GitHub Desktop.
TS Starter: Convert app.js to app.ts
- alert('Hello world!');
+ const greeting: string = 'Hello World!';
+ alert(greeting);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment