How Classes work in JavaScript

sait

Sai gowtham

Posted on November 11, 2018

How Classes work in JavaScript

Classes are the syntactic sugar in the javascript unlike the other programming languages javascript doesn't contain proper classes.

Classes use the prototype-based inheritance by using constructors.

What is a constructor?

A constructor is a function object which is used to create and initializes the objects.

constructor

Let's discuss now by using examples.

function Student(){

}
const student = Student();
console.log(student) // undefined
Enter fullscreen mode Exit fullscreen mode

If we invoke a function with the new keyword it will return the empty object instead of undefined.

function Student(){
}

const student1 = new Student();
console.log(student1) //  { } 
Enter fullscreen mode Exit fullscreen mode

How to add properties into that returned empty object?

function Student(name,age){

  this.name = name
  this.age = age
}

const student1 = new Student('king',20)
// { name : 'king',age:20 }
Enter fullscreen mode Exit fullscreen mode

The new object is created by the constructor and assigned to this keyword so that we can add the properties to the object by using this.propertyname.

At last, the constructor returns this object like below image.

Classes

Classes are also a special type of functions using prototype-based inheritance.

to declare the class we need to use class keyword.

class Student{

constructor(name,age){
  this.name = name
  this.age = age
}

}

const student1 = new Student('king',20)

// { name : 'king',age:20 }
Enter fullscreen mode Exit fullscreen mode

Methods in classes

class Student{

 constructor(name,age){
  this.name = name
  this.age = age
}

 getAge(){
   return this.age;
 }

}

const student1 = new Student('king',20)
student1.getAge();
Enter fullscreen mode Exit fullscreen mode

The methods we declare inside the Student class are added to its prototype and it assigns the methods to the this.__proto__ property. so that at the time of accessing the getAge method javascript engine first look on its object, if it fails to find then it will look up at the __proto__ property.

check out the below image you will get the clarity.

__proto__

Extends in classes

Extends keyword helps us to access the properties and methods present in the other class or parent class.

super
If we extend the class from the parent class we need to invoke the parent class before using the child class there is a super method provided by the javascript, it does the invocation for us.

class Csestudent extends  Student{

    constructor(name,age,course){
      super(name,age);
     this.course = course
    }

   getCourse(){
      return this.course
   }
}

const student = new Csestudent('king',20,'JavaScript')
Enter fullscreen mode Exit fullscreen mode

In below image, i have shown how javascript engine process the code.

Let me explain what happens when we invoke a Csestudent class javascript engine first adds the Csestudent to the call stack once it sees the super method it invokes the parent class which is a Student and it returns the object with two properties at final we are adding course property to that object.

The final student object might look like these.

But the methods we declared in the Student class are present in the this.__proto__.__proto__

References

Originally Published at reactgo.com
Follow me on twitter

πŸ’– πŸ’ͺ πŸ™… 🚩
sait
Sai gowtham

Posted on November 11, 2018

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Starting with ReactJS with fun
javascript Starting with ReactJS with fun

June 15, 2024

Intro to React Hooks
javascript Intro to React Hooks

April 29, 2024

Make React from scratch for fun
javascript Make React from scratch for fun

June 24, 2023