Created
April 30, 2017 12:08
-
-
Save kopylovvlad/dc7037d0fee658335ba51828d9aa0432 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict' | |
| class Animal { | |
| constructor (name) { | |
| this.name = name | |
| } | |
| walk () { | |
| console.log(`${this.name} is walking`) | |
| } | |
| } | |
| class Rabbit extends Animal { | |
| walk () { | |
| super.walk() | |
| console.log("...and jumping!") | |
| } | |
| } | |
| new Animal('John').walk() | |
| new Rabbit('Bob').walk() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment