From e1ea8065cfaee3a9e35fcbb8e9a3a1ea26856f94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdurrahman=20Ayy=C4=B1ld=C4=B1z?= Date: Wed, 24 Aug 2022 02:09:01 +0300 Subject: [PATCH] Update 15_day_classes.md --- 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..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 } ```