const key = 'name';let obj;const res = (obj = {}, obj[key] = 'John', obj);console.log(res); // {name: "John"}在一个地方看到的,很不理解,想问一下这是什么写法 查看完整描述