JSFiddle - React, Tailwind, and code Playground

by msfrisbie

JavaScript

class Foo {
  print() {
    console.log('foo')
  }
}

class Bar extends Foo {
  print() {
  	super.print();
    console.log('bar')
  }
}

var b = new Bar()
b.print()