blob: 7284e9fa63a304437f353b43c3261a6f6be756a7 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
---
title: String.prototype.endsWith()
slug: Web/JavaScript/Reference/Global_Objects/String/endsWith
tags:
- JavaScript
- Prototipo
- Referencia
- String
- metodo
translation_of: Web/JavaScript/Reference/Global_Objects/String/endsWith
original_slug: Web/JavaScript/Referencia/Objetos_globales/String/endsWith
---
<div>{{JSRef}}</div>
<p>El método <strong><code>endsWith()</code></strong> determina si una cadena de texto termina con los caracteres de una cadena indicada, devolviendo <code>true</code> o <code>false</code> según corresponda.</p>
<div>{{EmbedInteractiveExample("pages/js/string-endswith.html")}}</div>
<h2 id="Sintaxis">Sintaxis</h2>
<pre class="syntaxbox notranslate"><code><var>str</var>.endsWith(<var>searchString</var>[, <var>position</var>])</code></pre>
<h3 id="Parámetros">Parámetros</h3>
<dl>
<dt><code><var>searchString</var></code></dt>
<dd>Los caracteres a buscar hasta el final de la cadena <em><code>str</code></em>.</dd>
<dt><code><var>length</var></code> {{optional_inline}}</dt>
<dd>Si se indica, se utiliza como el tamaño de <em><code>str</code></em>. Por defecto se usa <code><em>str</em>.length</code>.</dd>
</dl>
<h3 id="Valor_devuelto">Valor devuelto</h3>
<p><strong><code>true</code></strong> si los caracteres proporcionados se encuentran al final de la cadena de texto; en caso contrario, <strong><code>false</code></strong>.</p>
<h2 id="Descripción">Descripción</h2>
<p>Este método determina si una cadena de texto termina en otra cadena o no. Este método distingue entre mayúsculas y minúsculas.</p>
<h2 id="Polyfill">Polyfill</h2>
<p>Este método ha sido añadido a la especificación ECMAScript 6 y puede no estar disponible en todas las implementaciones de JavaScript. Sin embargo, puedes implementar el polyfill <code>String.prototype.endsWith()</code> con el siguiente fragmento de código:</p>
<pre class="brush: js notranslate">if (!String.prototype.endsWith) {
String.prototype.endsWith = function(search, this_len) {
if (this_len === undefined || this_len > this.length) {
this_len = this.length;
}
return this.substring(this_len - search.length, this_len) === search;
};
}
</pre>
<h2 id="Ejemplos">Ejemplos</h2>
<h3 id="Usando_endsWith">Usando <code>endsWith()</code></h3>
<pre class="brush: js notranslate">let str = 'To be, or not to be, that is the question.'
console.log(str.endsWith('question.')) // true
console.log(str.endsWith('to be')) // false
console.log(str.endsWith('to be', 19)) // true
</pre>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-string.prototype.endswith', 'String.prototype.endsWith')}}</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_en_navegadores">Compatibilidad en navegadores</h2>
<p>{{Compat("javascript.builtins.String.endsWith")}}</p>
<h2 id="Ver_también">Ver también</h2>
<ul>
<li>{{jsxref("String.prototype.startsWith()")}}</li>
<li>{{jsxref("String.prototype.includes()")}}</li>
<li>{{jsxref("String.prototype.indexOf()")}}</li>
<li>{{jsxref("String.prototype.lastIndexOf()")}}</li>
</ul>
|