class Person { constructor(name, age){ this.name = name; this.age = age; console.log(this); } } const person = new Person("YASDASD", 123);