aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/console/timeend/index.html
blob: 3af2e47538c38678bf0ed8cdca167488d859d0ca (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
54
55
56
57
---
title: Console.timeEnd()
slug: Web/API/Console/timeEnd
translation_of: Web/API/Console/timeEnd
---
<div>{{APIRef("Console API")}}</div>

<p>Detiene un temporizador que haya sido establecido previamente con {{domxref("console.time()")}}.</p>

<p>Consulte la documentación de <a href="/en-US/docs/Web/API/console#Timers">Timers</a>  para más detalles y ejemplos.</p>

<p>{{AvailableInWorkers}}</p>

<h2 id="Sintaxis">Sintaxis</h2>

<pre class="syntaxbox">console.timeEnd(<em>etiqueta</em>);
</pre>

<h3 id="Parámetros">Parámetros</h3>

<dl>
 <dt><font face="consolas, Liberation Mono, courier, monospace"><span style="background-color: rgba(220, 220, 220, 0.5);">etiqueta</span></font></dt>
 <dd>El nombre del temporizador a detener. Al detenerse, el tiempo transcurrido será mostrado automáticamente en la <a href="/en-US/docs/Tools/Web_Console">Consola del Navegador</a>.</dd>
</dl>

<h2 id="Especificaciones">Especificaciones</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Especificación</th>
   <th scope="col">Estatus</th>
   <th scope="col">Comentario</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName("Console API", "#timeend", "console.timeEnd()")}}</td>
   <td>{{Spec2("Console API")}}</td>
   <td>Initial definition</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilidad_con_Navegadores">Compatibilidad con Navegadores</h2>

<div>


<p>{{Compat("api.Console.timeEnd")}}</p>
</div>

<h2 id="Relacionados">Relacionados</h2>

<ul>
 <li><a href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></li>
</ul>