Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omarkdev/d449ec894ab198a8f3ed675f73cf2c51 to your computer and use it in GitHub Desktop.
Save omarkdev/d449ec894ab198a8f3ed675f73cf2c51 to your computer and use it in GitHub Desktop.
class User {
name: string = 'Marcos';
changePassword(newPassword: string) { }
}
const user = new User();
for (const key in user) {
console.log(key);
}
// name
// changePassword
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment