สมมติว่าต่อไปนี้คือชุดของเรา -
var name = new Set(['John', 'David', 'Bob', 'Mike']);
ในการแปลงชุดเป็นวัตถุ ให้ใช้ Object.assign() ใน JavaScript −
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' }