JavaScript 转换集合为对象
比方说,以下是我们的Set —
var name = new Set(['John', 'David', 'Bob', 'Mike']);
要将集合转换为对象,请使用JavaScript中的Object.assign() −
var setToObject = Object.assign({}, ...Array.from(name, value => ({ [value]: 'not assigned' })));
示例
以下是代码 –
var name = new Set(['John', 'David', 'Bob', 'Mike']);
var setToObject = Object.assign({}, ...Array.from(name, value => ({ [value]: 'not assigned' })));
console.log("The Set result=");
console.log(name);
console.log("The Object result=");
console.log(setToObject);
要运行上述程序,你需要使用以下命令 −
node fileName.js.
在这里,我的文件名是demo260.js。
输出
这将在控制台产生以下输出 –
PS C:\Users\Amit\javascript-code> node demo260.js
The Set result=
Set { 'John', 'David', 'Bob', 'Mike' }
The Object result=
{
John: 'not assigned',
David: 'not assigned',
Bob: 'not assigned',
Mike: 'not assigned'
}