Q:

javascript create element with class

// create div element by javascript with class

var div = document.createElement('div');
div.className = "div1";
4
class Person {
 constructor(name, age) {
   this.name = name;
   this.age = age;
 }
  present = () => { //or present(){
  	console.log(`Hi! i'm ${this.name} and i'm ${this.age} years old`) 
  }
}
let me = new Person("tsuy", 15);
me.present();
// -> Hi! i'm tsuy and i'm 15 years old.
4
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";
1
class Car {
  constructor(brand) {
    this.carname = brand;
  }
}
1
class ClassName
{
	  
}
0

New to Communities?

Join the community