Skip to content

Instantly share code, notes, and snippets.

@DublinCity
Last active November 24, 2018 03:19
Show Gist options
  • Save DublinCity/950a2a7aa1217739231f0c8619b49369 to your computer and use it in GitHub Desktop.
Save DublinCity/950a2a7aa1217739231f0c8619b49369 to your computer and use it in GitHub Desktop.
Typescript setting example-1
// myFirstTypescript.ts
const str: string = "happy CODEing";
class Coffee {
private name: string;
private temperature: string;
constructor(name: string, temperature: string) {
this.name = name;
this.temperature = temperature;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment