-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.html
31 lines (26 loc) · 886 Bytes
/
3.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
30
31
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- meta autor, desc y kw -->
<title>Ejercicios Bucles</title>
</head>
<body>
<header>
</header>
<main>
<h2>Ejercicios con bucles</h2>
<h3>Ejercicio 3</h3>
<p>Realiza un script que pida cadenas de texto hasta que se pulse “cancelar”. Al salir con “cancelar” deben mostrarse todas las cadenas concatenadas con un guión -. Nota: usar confirm() https://www.w3schools.com/jsref/met_win_confirm.asp</p>
<p><u>Resultado</u>:</p>
<script src="./js/bucles3.js"></script>
<div>
<a href="./index.html">Ir a ejercicio anterior</a>
<a href="./4.html">Ir a ejercicio siguiente</a>
</div>
</main>
<footer>
</footer>
</body>
</html>