From c3765594906d525bbf6e725f4b5ed08ef35c9237 Mon Sep 17 00:00:00 2001 From: Mayank Walia <86161735+mayankwalia@users.noreply.github.com> Date: Sat, 28 May 2022 23:00:48 +0530 Subject: [PATCH] Fixed JavaScript typo --- 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..a05671c 100644 --- a/15_Day_Classes/15_day_classes.md +++ b/15_Day_Classes/15_day_classes.md @@ -40,7 +40,7 @@ ## Classes -JavaScript is an object oriented programming language. Everything in JavScript is an object, with its properties and methods. We create class to create an object. A Class is like an object constructor, or a "blueprint" for creating objects. We instantiate a class to create an object. The class defines attributes and the behavior of the object, while the object, on the other hand, represents the class. +JavaScript is an object oriented programming language. Everything in JavaScript is an object, with its properties and methods. We create class to create an object. A Class is like an object constructor, or a "blueprint" for creating objects. We instantiate a class to create an object. The class defines attributes and the behavior of the object, while the object, on the other hand, represents the class. Once we create a class we can create object from it whenever we want. Creating an object from a class is called class instantiation.