Skip to content

Commit f3d75e9

Browse files
authored
Merge pull request #1314 from juneaucross/patch-7
Правит недопереведенную строку
2 parents 5b3f87d + d8b9b97 commit f3d75e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/05-data-types/07-map-set/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ let prices = Object.fromEntries([
184184
['meat', 4]
185185
]);
186186
187-
// now prices = { banana: 1, orange: 2, meat: 4 }
187+
// prices = { banana: 1, orange: 2, meat: 4 }
188188
189189
alert(prices.orange); // 2
190190
```
@@ -202,7 +202,7 @@ map.set('orange', 2);
202202
map.set('meat', 4);
203203
204204
*!*
205-
let obj = Object.fromEntries(map.entries()); // make a plain object (*)
205+
let obj = Object.fromEntries(map.entries()); // создаём обычный объект (*)
206206
*/!*
207207
208208
// готово!

0 commit comments

Comments
 (0)