'use strict'
const user = {
name: "Вася",
_password: "***",
a() {
console.log(this);
}
};
const user1 = {
name: "John"
}
const a = user.a
const b = a.bind(user);
const c = a.bind(user1);
const d = b.bind(user1);
user.a();
a();
b();
c();
d();
как вариант, использовать button type button, и тогда обрабатывать событие на кнопке