JSFiddle - React, Tailwind, and code Playground
JavaScript
class Person {
constructor(a) {
this.name = a;
}
sayName(a) {
$('body').prepend('<div>aaa ' + this.name + ' ccc</div>');
}
saySurname(a) {
$('body').prepend('<div>' + a + ' ' + this.name + ' 333</div>');
}
}
const john1 = new Person('bbb');
john1.sayName();
const john2 = new Person('222');
john2.saySurname('111');