function listener(type, el) {
el.typeEventListener(...)
}
listener('add', el)
class Bla {
customNameMethod() {
alert()
}
}
const bla = new Bla();
bla["custom" + `Name` + 'Method']();
let methodName = `Name` + 'Method';
bla[`custom${methodName}`]();