From 6d09e3ffc3f7b6a1577096d45eb283f3b0a20486 Mon Sep 17 00:00:00 2001 From: Arash Arora <52750629+arash-arora@users.noreply.github.com> Date: Tue, 15 Nov 2022 23:22:40 +0530 Subject: [PATCH] Day 15, typos #566 --- 15_Day_Classes/15_day_classes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/15_Day_Classes/15_day_classes.md b/15_Day_Classes/15_day_classes.md index be9e8db..c0f5fcb 100644 --- a/15_Day_Classes/15_day_classes.md +++ b/15_Day_Classes/15_day_classes.md @@ -72,7 +72,7 @@ We have created an Person class but it does not have any thing inside. Instantiation class means creating an object from a class. We need the keyword _new_ and we call the name of the class after the word new. -Let us create a dog object from our Person class. +Let us create a person object from our Person class. ```js class Person { @@ -243,7 +243,7 @@ console.log(person2.getFullName()) ```sh Asabeneh Yetayeh -test.js:19 Lidiya Tekle +Lidiya Tekle ``` ### Properties with initial value