We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fb56ae commit 1736ddeCopy full SHA for 1736dde
Entregas/Proyecto/index.js
@@ -1,23 +1,4 @@
1
-//PRIMERA ENTREGA
2
-//Login basico usando Sentencias IF, IF ELSE y WHILE
3
-let login = true;
4
-while(login){
5
- option = prompt("Opcion: \n 0. Login. \n 1.Salir");
6
- if (option==0){
7
- let user=prompt("Ingrese un Usuario: ");
8
- if (user==""){
9
- alert ("Debe ingresar usuario valido.");
10
- } else {
11
- alert("BIENVENIDO AL SISTEMA "+ user);
12
- login=false;} //Para salir del while
13
- } else if (option==1) {
14
- alert("Vuelva Pronto");
15
- login=false;
16
- } else if (option=="" || option>1) {
17
- prompt("Ingrese Opcion Correcta: \n 0. Login. \n 1.Salir");
18
- }
19
-}
20
-console.log("continua el codigo");
+
21
22
23
Entregas/PruebasEntrega/index copy.js
0 commit comments