Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

190
Vistas
Count of Positives/ Sum of Negatives

We are supposed to return the count of all the positive numbers given an array, and the addition of all the numbers given the same array. Could someone tell me what I am doing wrong please. I would really appreciate it. This is what I put as my code(JavaScript):

function countPositivesSumNegatives(input) {
  let arr = [];

  let count = 0;

  let neg = 0;

  for (let i = 0; i <= input.length; i++) {
    if (input[i] > 0) {
      count++;
    } else if (input[i] < 0) {
      neg += input[i];
    }
    return arr.push(count, neg);
  }
}
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

function countPositivesSumNegatives(input) {
  let count = 0;
  let neg = 0;

  for (let i = 0; i <= input.length; i++) {
    if (input[i] > 0) {
      count++;
    } else if (input[i] < 0) {
      neg += input[i];
    }
  }
  // Return outside the for loop
  return [count, neg];
}

console.log(countPositivesSumNegatives([1,2,4,-1,0,-2,3,-4]))

about 4 years ago · Juan Pablo Isaza Denunciar

0

function countPositivesSumNegatives(input) {
  let count = 0;
  let neg = 0;

  for (const number of input) {
    if (number > 0) {
      count++;
    } else if (number < 0) {
      neg += number;
    }
  }
  
  return [count, neg];
}
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda