Skip to content

Commit

Permalink
arregle lo de array.from y num()
Browse files Browse the repository at this point in the history
  • Loading branch information
alecapra96 committed Jan 13, 2021
1 parent f371a72 commit 1c01e53
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions grupoFamiliar.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ function ShowsInputsCreated(){ //Muestra imputs de acuerdo al numero que escribi
event.preventDefault(); //Esto lo pongo para que no pase lo que paso en clase-5
document.querySelector("#titulo").innerText = "Promedio de edad de tus familiares"; // Cambio el titulo



//ACA TENGO QUE HACER QUE DEJEN DE ESTAR OCULTOS LOS BOTONES DEL A FUNCION CREATEBUTTONMORE Y CREATEBUTTONNEXT2



let $numberFamily = document.querySelector("#numberFamily").value; // Selecciono el valor que introdujo el usuario del numero de familiares

if ($numberFamily != 0){ // Creo tantos imputs como $numberFamily tenga.
Expand All @@ -29,15 +35,31 @@ function CalcularPromedio(){
let verArray= [] ;
let $imputsGenerados = Array.from(document.getElementsByClassName("inputsGenerados"));

for (i=0;i<$imputsGenerados.length;i++)
for (let i=0;i<$imputsGenerados.length;i++)
{
verArray = $imputsGenerados[i];
arrayGenerado.push(verArray.value);
}
console.log(arrayGenerado);
return arrayGenerado;
CalcularMayor();



}
function CalcularMayor(){
let numeroMayor=Number(arrayGenerado[0]);

for (let i=0;i<arrayGenerado.length;i++)
{

if (Number(arrayGenerado[i]) > numeroMayor ) {
numeroMayor = arrayGenerado[i];

}
}
console.log(numeroMayor);

}


function ocultarInicio() { // Funcion para ocultar el imput y el button del principio
Expand Down

0 comments on commit 1c01e53

Please sign in to comment.