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

271
Vistas
How can I difference id (number) and email (string) in Javascript?

I have API and some of them return to only email and some return only id. For example:

user1 value: example@example.com

user2 value: 1212391361783212

I need that if I have input and wanna give value if the value is email. If the value is id, the input value must be null

<input value={???}/>
about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

You can check if a string is a valid number using isNaN. So

if(isNaN(value)) {
    // value is email
 } else {
    // value is id
 }
about 4 years ago · Juan Pablo Isaza Denunciar

0

Your code sample is incomplete but what you're trying to do should look something like this. Rather than assuming any non-numerical response is a valid email, which can break in the future as the API changes, be explicit about what you're looking for as below.

// Assume you're comfortable using a relatively loose pattern to match an email i.e. no overly strict formatting rules
const mailPattern = /^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/
// Assume response is in scope and contains the API response with the email or id deserialized from the body
const value = mailPattern.test(response) ? value : null
about 4 years ago · Juan Pablo Isaza Denunciar

0

You can use Regular expression /^\d+$/ combined with RegExp.prototype.test():

if (/^\d+$/.test(value)) {
  // It's number
}
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