“Creando clases JS” Código de respuesta

clase JavaScript

// 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());
Nathan uses Linux

clase JavaScript

class Rectangle {
  constructor(height, width) {
    this.height = height;
    this.width = width;
  }
  // Getter
  get area() {
    return this.calcArea();
  }
  // Method
  calcArea() {
    return this.height * this.width;
  }
}

const square = new Rectangle(10, 10);

console.log(square.area); // 100
HimansaE

Creando clases JS

// creating a class
class Person {
  constructor(name) {
    this.name = name;
  }
}
SAMER SAEID

Respuestas similares a “Creando clases JS”

Preguntas similares a “Creando clases JS”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código