Answers for "how to create a class javascript"

6

create element javascript with class

// create div element by javascript with class

var div = document.createElement('div');
div.className = "div1";
Posted by: Guest on June-15-2020
3

how to create a class javascript

class Person {
	constructor(name, age) {
		this.name = name;
		this.age = age;
	}
	displayInfo() {
		return this.name + ' is' + this.age + " years old";
	}
}

const Anthony = new Person('Anthony', 32);
Posted by: Guest on March-18-2021
1

class javascript

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

  get area() {
    return this.calcArea();
  }

  calcArea() {
    return this.height * this.width;
  }
}

const square = new Polygon(10, 10);

console.log(square.area);
Posted by: Guest on April-05-2021
2

javascript create class

class Car {
  constructor(brand) {
    this.carname = brand;
  }
}
Posted by: Guest on November-30-2019
1

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' }







.
Posted by: Guest on January-25-2021
1

javascript classes

let Person = class {
  constructor(firstName, lastName) {
    this.firstName = firstName;
    this.lastName = lastName;
  }
}
Posted by: Guest on May-05-2020

Code answers related to "how to create a class javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language