Skip to content

Instantly share code, notes, and snippets.

@iceener
Created April 17, 2020 16:43
Show Gist options
  • Save iceener/379890df9e582055cc1b47333773088c to your computer and use it in GitHub Desktop.
Save iceener/379890df9e582055cc1b47333773088c to your computer and use it in GitHub Desktop.
TypeScript 01-finished
class Avenger {
constructor(name) {
this.name = name;
}
}
const hero = new Avenger("Steve Rogers");
hero.name; /*?*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment