aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/notification/body/index.md
blob: 6b184c6500c1e0a877e1b1bd418001a22a430b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
title: Notification.body
slug: Web/API/notification/body
tags:
  - API
  - API Notificaciones
  - Javascript Notificador
  - Notificaciones
translation_of: Web/API/Notification/body
---
{{APIRef("Web Notifications")}}{{AvailableInWorkers}}{{securecontext_header}}

La propiedad **`body`** de solo lectura de la interfaz
{{domxref("Notification")}} indica la cadena del cuerpo de la notificación, como
se especifica en la opción `body` del constructor
{{domxref("Notification.Notification","Notification()")}}.

## Sintaxis

```js
var body = Notification.body;
```

### Valor

Un {{domxref("DOMString")}}.

## Ejemplos

```js
function spawnNotification(theBody, theIcon, theTitle) {
  var options = {
    body: theBody,
    icon: theIcon,
  };
  var n = new Notification(theTitle, options);

  console.log(n.body);
}
```

## Especificaciones

{{Specifications}}

## Compatibilidad del navegador

{{Compat}}

## See also

- [Usando la API de notificaciones](/es/docs/Web/API/Notifications_API/Using_the_Notifications_API)