Created
June 25, 2018 19:34
-
-
Save rarmatei/a0a0f08a774c9558f4fc5e0229757cd6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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