Skip to content

Commit

Permalink
[es] Web/JavaScript/Reference/Global_Objects/Map/size (#23215)
Browse files Browse the repository at this point in the history
* [es] translate map size
  • Loading branch information
seeker8 authored Aug 27, 2024
1 parent e9665c8 commit 4b65f55
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions files/es/web/javascript/reference/global_objects/map/size/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
title: Map.prototype.size
slug: Web/JavaScript/Reference/Global_Objects/Map/size
l10n:
sourceCommit: 6a0f9553932823cd0c4dcf695d4b4813474964fb
---

{{JSRef}}

La propiedad de acceso **`size`** de las instancias {{jsxref("Map")}} regresa el número de elementos de este _map_.

{{EmbedInteractiveExample("pages/js/map-prototype-size.html")}}

## Descripción

El valor de `size` es un entero que representa, el número de entradas que el objeto `Map` tiene. La función de acceso para `size` es `undefined`; no puedes modificar esta propiedad.

## Ejemplos

### Usando size

```js
const myMap = new Map();
myMap.set("a", "alpha");
myMap.set("b", "beta");
myMap.set("g", "gamma");

console.log(myMap.size); // 3
```

## Especificaciones

{{Specifications}}

## Compatibilidad con nvegadores

{{Compat}}

## Véase también

- {{jsxref("Map")}}

0 comments on commit 4b65f55

Please sign in to comment.