Method Overriding

Learning from AstroPlatformer

Code Runner Challenge

method-overriding

View IPYNB Source
%%js
// CODE_RUNNER: method-overriding

class Coin {update(){console.log("Base");}}
class GameCoin extends Coin {update(){console.log("Override");}}
const c = new GameCoin();
c.update();

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