Use Of Javascript With OOP Concepts
Javascript With OOP Concepts What is OOP? Basically OOP is the abbreviation for object-oriented-programming. Object-oriented-programming is a programming language modal for software design revolves around objects or data instead of functions and logics . That means it is a modal which is wrapped around objects that uses in the computer programming . In the other word it focuses on what developers want to be manipulate rather than how they want to manipulate them. There are only 4 object-oriented concepts in computer programming . Those are, Inheritance : This is a special feature of OOP which helps to use the same type of behaviors of one class for another class . This feature holds a behavior like what the parent and child have. EX: Assume that there are some classes called parrots , owls , and bats . All of them are having some same behaviors . So that all the similar functionalities can be included in one class c...