From 77cd25d57897616b870579a52fc991ee3d60d3f5 Mon Sep 17 00:00:00 2001 From: Vitalii Psl Date: Sun, 11 Sep 2022 12:51:01 +0300 Subject: [PATCH] Add missed parent class name in the inheritance syntax example --- 15_Day_Classes/15_day_classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15_Day_Classes/15_day_classes.md b/15_Day_Classes/15_day_classes.md index be9e8db..c2ac8c4 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 } ```