Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created February 15, 2022 12:19
class Animal {
private name: string;
constructor(theName: string) {
this.name = theName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment