Artificial intelligent assistant

prototypeで関数を追加した時に自インスタンスは参照できますか? prototype Date.prototype.hoge = () => { console.log(this); }; var hoge = new Date(); hoge.hoge(); // why undefined







Date.prototype.hoge = function() {
console.log(this);
};

var hoge = new Date();
hoge.hoge();

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy c4752a307d98e819fec6a58aed0228c2