diff --git a/15_Day_Classes/15_day_classes.md b/15_Day_Classes/15_day_classes.md index be9e8db..af3a93c 100644 --- a/15_Day_Classes/15_day_classes.md +++ b/15_Day_Classes/15_day_classes.md @@ -555,7 +555,7 @@ Using inheritance we can access all the properties and the methods of the parent ```js // syntax -class ChildClassName extends { +class ChildClassName extends ParentClassName{ // code goes here } ```