class ClassMates{
constructor(name,age){
this.name=name;
this.age=age;
}
displayInfo(){
return this.name + "is " + this.age + " years old!";
}
}
let classmate = new ClassMates("Mike Will",15);
classmate.displayInfo(); // result: Mike Will is 15 years old!
Let suppose we are creating a div using javascript create element
// create a new div element
var newDiv = document.createElement("div");
// assigning class name to the new div
newDiv.className = "className";
// 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());
//class in es6 are just functional constructor.
class PersonES6{
constructor(firstname,lastname,age){
this.firstname= firstname;
this.lastname=lastname;
this.age=age
}
aboutPerson(){
console.log(`My name is ${this.firstname} ${this.lastname} and I am ${this.age} years old`)
}
}
const shirshakES6= new Person('Shirshak','Kandel',25)
shirshakES6.aboutPerson();
const p = new Rectangle(); // ReferenceError
class Rectangle {}
// functions can be called even before they are defined, but classes must be defined before they can be constructed.