JavaScript 转换集合为对象

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'
}

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

JavaScript 教程