var o = {
method: function() {
el.onclick = function(e) {
this(будет контекст html элемента по которому кликаем)
o.method()//кроме этого еще как можно?
}
}
}
var o = {
method: function() {
el.onclick = (e) => {
this.method()
}
}
}
var o = {
method: function() {
var _this = this;
el.onclick = function(e) {
_this.method()
}
}
}