File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ let opcion=true;
9292const u = new User ( ) ; //INSTANCIO CLASE
9393
9494while ( opcion ) {
95- let opt = parseInt ( prompt ( "INGRESE OPCION:\n 0. REGISTRO USUARIO\n 1.LOGIN\n 2.SALIR\n\n" ) ) ;
95+ let opt = parseInt ( prompt ( "INGRESE OPCION:\n 0. REGISTRO USUARIO\n 1. LOGIN\n 2. SALIR\n\n" ) ) ;
9696 switch ( opt ) {
9797 case 0 :
9898 u . ingresoDatos ( ) ; //Pide registro de datos usuario
@@ -108,4 +108,5 @@ let opt=parseInt(prompt ("INGRESE OPCION:\n 0. REGISTRO USUARIO\n 1.LOGIN\n
108108 break ;
109109 }
110110}
111- alert ( "USTED ESTA SALIENDO DEL LOGIN" ) ;
111+ const hoy = new Date ( ) ;
112+ alert ( "HOY " + hoy . toLocaleDateString ( ) + " USTED ESTA SALIENDO DEL SISTEMA" ) ; // "14/6/2020"
Original file line number Diff line number Diff line change 11html {
22 font-family : Tahoma;
33}
4-
4+
55body {
66 font-family : sans-serif;
77 font-weight : normal;
You can’t perform that action at this time.
0 commit comments