Skip to content

Instantly share code, notes, and snippets.

@rarmatei
Created June 25, 2018 19:34
Show Gist options
  • Save rarmatei/a0a0f08a774c9558f4fc5e0229757cd6 to your computer and use it in GitHub Desktop.
Save rarmatei/a0a0f08a774c9558f4fc5e0229757cd6 to your computer and use it in GitHub Desktop.
class Library {
titles!: string[];
address: string = "1 Duck Lane";
isPublic: boolean;
constructor() {
this.isPublic = true;
}
}
const library = new Library();
// sometime later & elsewhere in our codebase..
const shortTitles = library.titles.filter(
book => book.length < 5
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment