DEV Community

Discussion on: Do you know ES6 - Part 1

Collapse
 
alfaifi_twitt profile image
عبدالله الفيفي Abdullah Al-Faifi

Great document
In the class inheritance example

small note:
class Person extends Human2
Should be :
class Person extends Human

inheritaning class Person from Human

Regards