// Sample object:const abc = { a: 'A', b: 'B', c: 'C'}// Sample Arrow functionconst xyz = (item) => item.a假设对象和箭头函数是分开定义的,如何使用这个箭头函数从对象中检索值? 查看完整描述