forked from omiras/functions-playground-javascript
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index8.html
29 lines (22 loc) · 1.05 KB
/
index8.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ejercicio 8</title>
</head>
<body>
<h1>Métodos string</h1>
<p>Todos los string tienen funciones o también llamados métodos para manipular su valor</p>
<p>Investiga un poco sorbe ello <a href="https://developer.mozilla.org/es/docs/Learn/JavaScript/First_steps/Useful_string_methods">aqui</a></p>
<span id="cambiar">Me encantan los gatos!</span>
<script>
let textoSpan = document.querySelector('#cambiar').textContent;
// La variable 'textoSpan' contiene el texto del tag 'span' con id='cambiar'
// Usa adecuadamente la función 'replace' para cambiar la palabra 'gatos' del texto del span; por tu animal favorito. NO DEBES CAMBIAR EL HTML MANUALMENTE, solo modificar la línea 21 de forma adecuada.
let nuevoTexto = textoSpan.replace('', '') // Cambiar solamente esta línea
// No modificar a partir de aquí
document.querySelector('#cambiar').textContent = nuevoTexto;
</script>
</body>
</html>