Skip to content

Instantly share code, notes, and snippets.

@4stern
Last active August 28, 2019 15:02
Show Gist options
  • Save 4stern/d3770df1db1663f1cc077141ea845469 to your computer and use it in GitHub Desktop.
Save 4stern/d3770df1db1663f1cc077141ea845469 to your computer and use it in GitHub Desktop.
function A() {
this.test = function() {
console.log('A:test');
};
}
class B extends A {
test() {
console.log('B:test"1');
super.test()
}
test = function() {
console.log('B:test"2');
super.test()
}
}
(new B()).test()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment