You are on page 1of 1

<html>

<head>

<title>Ejemplo 10b</title>

</head>

<body>

<h1>HOLA MUNDO CRUEL</h1>

<script type="text/javascript">

do {

nombre=prompt("Nombre");

apellidos=prompt("Apellidos");

correcto=confirm(nombre+" "+apellidos+"\n¿Son correctos los datos?");

} while (!correcto)

document.write(nombre+"<br>"+apellidos);

</script>

</body>

</html>

You might also like