Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. document.addEventListener('DOMContentLoaded', init);
  2. function init(){
  3. function ejer1() {
  4. var name = prompt('Escribe tu nombre:');
  5. var age = prompt('Escribe tu edad:');
  6. var estado = prompt('Escribe tu estado civil:');
  7. alert('Nombre: ' + name + '\nEdad: ' + age + '\nEstado civil: ' + estado);
  8. }
  9. ejer1();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement