Skip to content

Commit 65377ed

Browse files
committed
translate introduction
1 parent b569358 commit 65377ed

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

2-
# Map and Set
2+
# Map e Set
33

4-
Till now, we've learned about the following complex data structures:
4+
Até agora, aprendemos sobre as seguintes estruturas de dados complexas:
55

6-
- Objects are used for storing keyed collections.
7-
- Arrays are used for storing ordered collections.
6+
- Objetos são usados para armazenar coleções indexadas.
7+
- Arrays são usados para armazenar coleções ordenadas.
88

9-
But that's not enough for real life. That's why `Map` and `Set` also exist.
9+
Mas isso não é suficiente para a vida real. É por isso que `Map` e `Set` também existem.
1010

1111
## Map
1212

@@ -78,7 +78,7 @@ visitsCountObj[john] = 123; // try to use john object as the key, ben object wil
7878

7979
*!*
8080
// That's what got written!
81-
alert( visitsCountObj["[object Object]"] ); // 123
81+
alert( visitsCountObj["[object Object]"] ); // 123
8282
*/!*
8383
```
8484

0 commit comments

Comments
 (0)