From 5a75c71349161db3bdfa5b259adf0d4e3380f8c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdurrahman=20Ayy=C4=B1ld=C4=B1z?= Date: Wed, 24 Aug 2022 02:13:06 +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..9b7f296 100644 --- a/15_Day_Classes/15_day_classes.md +++ b/15_Day_Classes/15_day_classes.md @@ -571,7 +571,7 @@ class Student extends Person { const s1 = new Student('Asabeneh', 'Yetayeh', 'Finland', 250, 'Helsinki') console.log(s1) -console.log(s1.saySomething()) +s1.saySomething() console.log(s1.getFullName()) console.log(s1.getPersonInfo()) ```