An arrow function expression is a compact alternative to a traditional function expression, with some semantic differences and deliberate limitations in usage:...methods: js "use strict"; const obj = { i: 10, b: () => console.log(this...console.log(this.i, this); }, }; obj.b(); // logs undefined, Window...