We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8752573 commit 76656bdCopy full SHA for 76656bd
1-js/05-data-types/09-keys-values-entries/article.md
@@ -91,7 +91,7 @@ let prices = {
91
92
*!*
93
let doublePrices = Object.fromEntries(
94
- // convert prices to array, map key/value pairs into another pair
+ // convert prices to array, map each key/value pair into another pair
95
// and then fromEntries gives back the object
96
Object.entries(prices).map(entry => [entry[0], entry[1] * 2])
97
);
0 commit comments