文章加密

;

2025年1月2日 星期四

reduce 很好用

https://w3c.hexschool.com/blog/a2cb755f 


再舉例

data = [{

name: a,

value:10

|

const b =data.reduce((acc, item)=>{

acc[item.name] = item.value;

return acc

}, {})


console.log(b) // {a:10}