ウェブエンジニア問題集

次のJavaScriptコードで、obj.greet() を実行した場合の出力はどれか? const obj = { name: 'Alice', greet: () => { console.log(`Hello, ${this.name}`); } };