각 축소 작업에 대한 상호 작용 수를 계산합니다.
<p>다음과 같은 개체 목록이 있습니다.</p>
<pre class="brush:php;toolbar:false;">const UsageCosts = {
224910186407: {
장치 ID: "224910186407",
통화: "GBP",
연간 사용량: 1480.81
},
224910464538: {
장치 ID: "224910464538",
통화: "GBP",
연간 사용량: 617.36
},
224910464577: {
장치 ID: "224910464577",
통화: "EUR",
연간 사용량: 522.3
}
}</pre>
<p>다음과 같이 통화별로 합계를 계산합니다. </p>
<pre class="brush:php;toolbar:false;">const totalYearlyCost = Object.values(usageCosts).reduce(
(acc: { [키: 문자열]: 임의 }, 통계: 임의) =>
if (stat.currency && !acc[stat.currency]) {
acc[stat.currency] = 0
}
반품 {
...acc,
[stat.currency!]: acc[stat.currency!] + stat.yearlyUsage,
}
},
{},
)</pre>
<p>다음과 같이 개체를 반환합니다. </p>
<pre class="brush:php;toolbar:false;">{
유로: 522.3
GBP: 2,098.17
}</pre>
<p>또한 다음과 같이 통화당 총 기기 수를 반환하고 싶습니다. </p>
<pre class="brush:php;toolbar:false;">{
EUR: 522.3(1개 장치)
GBP: 2,098.17(2개 장치)
}</pre>
<p>다른 루프를 추가해 보았으나 결과가 예상과 달랐습니다. </p>