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

103
Vistas
How do you check for a type in an array?

I need to tell the program to search an array(that’s meant to be only numbers) if it contains any element that’s a string.

Also, the array is made up of the arguments to a function. Can someone please help? I’ve been trying to figure this out for at least an hour! This is what i did so far:

const sumAll = function(…args){
  const newArray = Array.from(args)
  for(let i = 0; i < newArray.length; i++){
    if(newArray[i] === NaN){
    return “ERROR”
    }
  }
}
about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

const sampleErrorArr = ['zero', 1, 2, 3, 4,]
const sampleArr = [1, 2, 3, 4, 5]

function sumAll(arr) {
    let sum = 0
    let hasNumber = true
    arr.forEach((item, index) => {
        if (typeof item === 'number') {
            let temp = sum + item
            sum = temp
        }
        else {
            hasNumber = false
        }
    })

    return hasNumber == true ? sum : "Error"
}

console.log(sumAll(sampleErrorArr)) //Error
console.log(sumAll(sampleArr)) // 15
about 4 years ago · Juan Pablo Isaza Denunciar

0

You're looking for the function isNaN

const sumAll = function(...args){
  const newArray = Array.from(args)
  for(let i = 0; i < newArray.length; i++){
    if(isNaN(newArray[i])){
      return "ERROR"
    }
  }
}

console.log(sumAll(1,2,3)) // no output - undefined

console.log(sumAll(1,"two",3)) // error

about 4 years ago · Juan Pablo Isaza Denunciar

0

let foundString = arrayWithPossiblyString.find(i=>isNaN(5-i));

Explanation:

  1. 5-"a" is a NaN.
  2. isNaN function can be used to chec if something is NaN
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