Skip to content

Instantly share code, notes, and snippets.

@obaranovskyi
Created January 15, 2022 05:06
Show Gist options
  • Save obaranovskyi/3abda10b03fdf3c00b349f23eba24c3d to your computer and use it in GitHub Desktop.
Save obaranovskyi/3abda10b03fdf3c00b349f23eba24c3d to your computer and use it in GitHub Desktop.
class Employee {
doWork() {
console.log('I\'m working!');
}
}
class Developer extends Employee {
override doWork() {
console.log('I\'m programming!')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment