从另一个创建对象 Javascript

Create object from another one Javascript

我有一个对象{键:'Mother',值:'Mam'}。 我需要得到一个像 {'Mother': 'Mam'}

这样的对象

你的问题很含糊,但你可以这样做:

const obj1 = {key: 'Mother', value: 'Mam'}
const obj2 = {[obj1.key]: obj1.value}

// obj2: {Mother: 'Mam'}