Inheritance Basic

Learning from AstroPlatformer

Code Runner Challenge

inheritance-basic

View IPYNB Source
%%js
// CODE_RUNNER: inheritance-basic

class GameObject {update(){console.log("Update");}}
class Coin extends GameObject {}
const c = new Coin();
c.update();

Lines: 1 Characters: 0
Output
Click "Run" in code control panel to see output ...