Javascript – What's the this value in callback arrow functions?
So as I am reading on the execution context in javascript and how does it works, everything seemed fine until I tried some examples on the this value of callback arrow functions. const printCard = function () { this.signatories.forEach((signatory) =>…