We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70d54c2 commit 62bca8cCopy full SHA for 62bca8c
Entregas/Entrega2/index.js
@@ -19,6 +19,9 @@ class User {
19
}
20
21
ingresoDatos (){
22
+/**
23
+ * USANDO PROMPT PARA INGRESO DE DATOS
24
+ */
25
// this.nombre=prompt("Ingrese Nombre: ");
26
// this.apellido=prompt("Ingrese Apellido: ");
27
// this.cedula=prompt("Ingrese Cedula: ");
@@ -31,6 +34,9 @@ class User {
31
34
// usuario: this.usuario,
32
35
// pass: this.pass
33
36
// }]
37
38
+ * USANDO UN FOR..IN PARA INGRESO DE DATOS
39
40
const datosU={
41
nombre: this.nombre,
42
apellido: this.apellido,
0 commit comments