Skip to content

Instantly share code, notes, and snippets.

@kusa-mochi
Created September 9, 2018 14:15
Show Gist options
  • Save kusa-mochi/62dffd85ca9c396fab8f4a921daa0189 to your computer and use it in GitHub Desktop.
Save kusa-mochi/62dffd85ca9c396fab8f4a921daa0189 to your computer and use it in GitHub Desktop.
class MyClass {
constructor() { }
MyFunction(x: number) {
console.log(`the input number is ${x}.`);
}
}
let myInstance: MyClass = new MyClass();
myInstance.MyFunction(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment