From d1ec56d7e9fa0e6d0744132ad3c2622a75657fcf Mon Sep 17 00:00:00 2001 From: Hugo Moncada <hugo_moncada@outlook.com> Date: Sun, 21 Aug 2022 11:10:55 -0500 Subject: [PATCH] fix 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.