File size: 119 Bytes
c930535
1
2
const o={"x":4,"y":6,"z":3,"w":4};const sum=Object.keys(o).reduce((a,k)=>a+o[k],0);console.log(JSON.stringify(o),sum);