javascript classes es6 code example

Example 1: es6 class example

<script>
   class Student {
      constructor(rno,fname,lname){
         this.rno = rno
         this.fname = fname
         this.lname = lname
         console.log('inside constructor')
      }
      set rollno(newRollno){
         console.log("inside setter")
         this.rno = newRollno
      }
   }
   let s1 = new Student(101,'Sachin','Tendulkar')
   console.log(s1)
   //setter is called
   s1.rollno = 201
   console.log(s1)
</script>

Example 2: javascript class

// Improved formatting of Spotted Tailed Quoll's answer
class Person {
	constructor(name, age) {
		this.name = name;
		this.age = age;
	}
	introduction() {
		return `My name is ${name} and I am ${age} years old!`;
	}
}

let john = new Person("John Smith", 18);
console.log(john.introduction());

Example 3: javascript es6 class

class MyClass {
  constructor() {
    this.answer = 42;
  }
}

const obj = new MyClass();
obj.answer; // 42

Example 4: es6 class example

<script>
   class Student {
      constructor(rno,fname,lname){
         this.rno = rno
         this.fname = fname
         this.lname = lname
         console.log('inside constructor')
      }
      get fullName(){
         console.log('inside getter')
         return this.fname + " - "+this.lname
      }
   }
   let s1 = new Student(101,'Sachin','Tendulkar')
   console.log(s1)
   //getter is called
   console.log(s1.fullName)
</script>

Example 5: es6 class example

class Polygon { 
   constructor(height, width) { 
      this.height = height; 
      this.width = width; 
   } 
}

Example 6: javascript class example

// to create a class named 'LoremIpsum':

class LoremIpsum {
  
  // a function that will be called on each instance of the class
  // the parameters are the ones passed in the instantiation

  constructor(a, b, c) {
    this.propertyA = a;
    
    // you can define default values that way
    this.propertyB = b || "a default value";
    this.propertyC = c || "another default value";
  }
  
  // a function that can influence the object properties
  
  someMethod (d) {
    this.propertyA = this.propertyB;
    this.propertyB = d;
  }
}






// you can then call it
var loremIpsum = new LoremIpsum ("dolor", null, "sed");

// at this point:
// loremIpsum = { propertyA: 'dolor',
//                propertyB: 'a default value',
//                propertyC: 'sed' }

loremIpsum.someMethod("amit");

// at this point:
// loremIpsum = { propertyA: 'a default value',
//                propertyB: 'amit',
//                propertyC: 'sed' }







.

Tags:

Cpp Example