class Person { constructor(name, age) { this.name = name; this.age = age; } } const person = new Person("John Doe", 23); console.log(person.name); // expected output: "John Doe"