For some reason, I'm not able to get any value from this object:
function ContextMenu(id){
    this.ID = id;
}
ContextMenu.prototype.attachTo = (element, v = false) => {
    var menuID = this.ID;
    console.log(menuID);//undefined!
    [...]
};
Any idea why? This code is a part of the preload file in electron.
 
    