Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
What is an Inheritance | Inheritance
Object-Oriented Programming in JavaScript
course content

Зміст курсу

Object-Oriented Programming in JavaScript

Object-Oriented Programming in JavaScript

1. Classes & Objects
2. Encapsulation
3. Static
4. Inheritance

What is an Inheritance

Inheritance is another main OOP principle, which means that some classes can adopt properties of other classes, and maybe extend them.

Like, for example, we have class Rectangle which represents the rectangle instance. Then, let’s define class Square. Square is a Rectangle, too, so we can create this class from the Rectangle class. Use keyword extends:

Now Square has the same attributes and methods as Rectangle class.

The Rectangle is a base class, and Square is a derived class. Or you can say that Rectangle is a parent class and Square is a daughter class.

Square differs with sides length: height is equal to the width, unlike for Rectangle.

Usually, JavaScript classes such as an array, console, window, etc. inherit some base classes, which can inherit other classes. It is very advisable to extend existing classes, not to define similar classes again.

Завдання

Create Fruit and Apple class, such that Apple is a daughter class for Fruit class. Let these classes be empty for now.

Завдання

Create Fruit and Apple class, such that Apple is a daughter class for Fruit class. Let these classes be empty for now.

Все було зрозуміло?

Секція 4. Розділ 1
toggle bottom row

What is an Inheritance

Inheritance is another main OOP principle, which means that some classes can adopt properties of other classes, and maybe extend them.

Like, for example, we have class Rectangle which represents the rectangle instance. Then, let’s define class Square. Square is a Rectangle, too, so we can create this class from the Rectangle class. Use keyword extends:

Now Square has the same attributes and methods as Rectangle class.

The Rectangle is a base class, and Square is a derived class. Or you can say that Rectangle is a parent class and Square is a daughter class.

Square differs with sides length: height is equal to the width, unlike for Rectangle.

Usually, JavaScript classes such as an array, console, window, etc. inherit some base classes, which can inherit other classes. It is very advisable to extend existing classes, not to define similar classes again.

Завдання

Create Fruit and Apple class, such that Apple is a daughter class for Fruit class. Let these classes be empty for now.

Завдання

Create Fruit and Apple class, such that Apple is a daughter class for Fruit class. Let these classes be empty for now.

Все було зрозуміло?

Секція 4. Розділ 1
toggle bottom row

What is an Inheritance

Inheritance is another main OOP principle, which means that some classes can adopt properties of other classes, and maybe extend them.

Like, for example, we have class Rectangle which represents the rectangle instance. Then, let’s define class Square. Square is a Rectangle, too, so we can create this class from the Rectangle class. Use keyword extends:

Now Square has the same attributes and methods as Rectangle class.

The Rectangle is a base class, and Square is a derived class. Or you can say that Rectangle is a parent class and Square is a daughter class.

Square differs with sides length: height is equal to the width, unlike for Rectangle.

Usually, JavaScript classes such as an array, console, window, etc. inherit some base classes, which can inherit other classes. It is very advisable to extend existing classes, not to define similar classes again.

Завдання

Create Fruit and Apple class, such that Apple is a daughter class for Fruit class. Let these classes be empty for now.

Завдання

Create Fruit and Apple class, such that Apple is a daughter class for Fruit class. Let these classes be empty for now.

Все було зрозуміло?

Inheritance is another main OOP principle, which means that some classes can adopt properties of other classes, and maybe extend them.

Like, for example, we have class Rectangle which represents the rectangle instance. Then, let’s define class Square. Square is a Rectangle, too, so we can create this class from the Rectangle class. Use keyword extends:

Now Square has the same attributes and methods as Rectangle class.

The Rectangle is a base class, and Square is a derived class. Or you can say that Rectangle is a parent class and Square is a daughter class.

Square differs with sides length: height is equal to the width, unlike for Rectangle.

Usually, JavaScript classes such as an array, console, window, etc. inherit some base classes, which can inherit other classes. It is very advisable to extend existing classes, not to define similar classes again.

Завдання

Create Fruit and Apple class, such that Apple is a daughter class for Fruit class. Let these classes be empty for now.

Секція 4. Розділ 1
Перейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
We're sorry to hear that something went wrong. What happened?
some-alt