https://dev.to/liaowow/take-this-quiz-understand-how-this-works-in-javascript-44dj Take 'this' Quiz, Understand How 'this' Works in JavaScript Among all the abstract ideas JavaScript has to offer, the 'this' keyword can be one of the most chall... dev.to Challenge #1 const call = { caller: "mom", says: function() { console.log(`Hey, ${this.caller} just called.`); } }; call.says(); What will the ..