ES6 Classes
ES6 Classes
Classes are an essential part of object-oriented programming (OOP). Classes are used to define the
blueprint for real-world object modeling and organize the code into reusable and logical parts.
Before ES6, it was hard to create a class in JavaScript. But in ES6, we can create the class by using
the class keyword. We can include classes in our code either by class expression or by using a class
declaration.
A class definition can only include constructors and functions. These components are together
called as the data members of a class. The classes contain constructors that allocates the memory
to the objects of a class. Classes contain functions that are responsible for performing the actions to
the objects.
3.9M
437
Exception Handling in Java -
Note: Instead of data properties, the body of the class only contains methods.
class Class_name{
}
Let us see the illustration for the class expression and class declaration.
class Student{
constructor(name, age){
this.name = name;
this.age = age;
}
}
Syntax
Example
Accessing functions
The object can access the attributes and functions of a class. We use the '.' dot notation
(or period) for accessing the data members of the class.
Syntax
obj.function_name();
Example
class Student {
constructor(name, age) {
this.n = name;
this.a = age;
}
stu() {
console.log("The Name of the student is: ", this.n)
console.log("The Age of the student is: ",this. a)
}
10. }
11.
12. var stuObj = new Student('Peter',20);
13. stuObj.stu();
In the above example, we have declared a class Student. The constructor of the class contains two
arguments name and age, respectively. The keyword 'this' refers to the current instance of the
class. We can also say that the above constructor initializes two variables 'n' and 'a' along with the
parameter values passed to the constructor.
The function stu() in the class will print the values of name and age.
Output
Note: Including a constructor definition is mandatory in class because, by default, every class has a
constructor.
Example
class Example {
static show() {
console.log("Static Function")
}
}
Example.show() //invoke the static method
Output
Static Function
Class inheritance
Before the ES6, the implementation of inheritance required several steps. But ES6 simplified the
implementation of inheritance by using the extends and super keyword.
Inheritance is the ability to create new entities from an existing one. The class that is extended for
creating newer classes is referred to as superclass/parent class, while the newly created classes are
called subclass/child class.
A class can be inherited from another class by using the 'extends' keyword. Except for the
constructors from the parent class, child class inherits all properties and methods.
Syntax
A class inherits from the other class by using the extends keyword.
Example
class Student {
constructor(a) {
this.name = a;
}
}
class User extends Student {
show() {
console.log("The name of the student is: "+this.name)
10. }
11. }
12. var obj = new User('Sahil');
13. obj.show()
In the above example, we have declared a class student. By using the extends keyword, we can
create a new class User that shares the same characteristics as its parent class Student. So, we can
see that there is an inheritance relationship between these classes.
Output
Types of inheritance
Inheritance can be categorized as Single-level inheritance, Multiple inheritance, and Multi-level
inheritance. Multiple inheritance is not supported in ES6.
Single-level Inheritance
It is defined as the inheritance in which a derived class can only be inherited from only one base
class. It allows a derived class to inherit the behavior and properties of a base class, which enables
the reusability of code as well as adding the new features to the existing code. It makes the code less
repetitive.
Multiple Inheritance
In multiple inheritance, a class can be inherited from several classes. It is not supported in ES6.
Multi-level Inheritance
In Multi-level inheritance, a derived class is created from another derived class. Thus, a multi-level
inheritance has more than one parent class.
Let us understand it with the following example.
Example
class Animal{
eat(){
console.log("eating...");
}
}
class Dog extends Animal{
bark(){
console.log("barking...");
}
10. }
11. class BabyDog extends Dog{
12. weep(){
13. console.log("weeping...");
14. }
15. }
16. var d=new BabyDog();
17. d.eat();
18. d.bark();
19. d.weep();
Output
eating...
barking...
weeping...
Example
class Parent {
show() {
console.log("It is the show() method from the parent class");
}
}
class Child extends Parent {
show() {
console.log("It is the show() method from the child class");
}
10. }
11. var obj = new Child();
obj.show();
In the above example, the implementation of the superclass function has changed in the child class.
You will get the following output after the successful execution of the above code:
Output
Syntax
super(arguments);
Example
In this example, the characteristics of the parent class have been extended to its child class. Both
classes have their unique properties. Here, we are using the super keyword to access the property
from parent class to the child class.
class Parent {
show() {
console.log("It is the show() method from the parent class");
}
}
class Child extends Parent {
show() {
super.show();
console.log("It is the show() method from the child class");
10. }
11. }
12. var obj = new Child();
13. obj.show();
Output