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

160
Vistas
Is possible to make function from code and make it shorter?

I have this lines of code

let value = productDetails.recentPurchaseDate;
if (!productDetails.salesPrice && !productDetails.recentPurchaseDate) {
  value = false;
}
if (!productDetails.presentEstimatedValue) {
  value = true;
}

Is it possible to refactor, I need to make it function and this two IF? Thanks in advance

about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

Generally I don't think it is well designed if-conditions, but I don't know your business requirements. Let's try with something like this

let value = productHasRecentPurchaseDate(productDetails); //name should math your business goal

function productHasRecentPurchaseDate(productDetails) {
    if (!productDetails.salesPrice && !productDetails.recentPurchaseDate) {
       return false;
    }
    else if (!productDetails.presentEstimatedValue) {
       return true;
    }
    else {
        return /*you need all if statement path to return some value, this is last one, please provide what those statements should return if both previous conditions fail*/;
    }
}
about 4 years ago · Juan Pablo Isaza Denunciar

0

You can do it like this

function getValue({
    salesPrice,
    recentPurchaseDate,
    presentEstimatedValue
}) {
    if (!salesPrice && !recentPurchaseDate) return false;
    if (!presentEstimatedValue) return true
    return recentPurchaseDate
}

and then

let value = getValue(productDetails);
about 4 years ago · Juan Pablo Isaza Denunciar

0

Something like that?

const value = yourNewFn();
function yourNewFn() {
    if (!productDetails.salesPrice && !productDetails.recentPurchaseDate) {
    value = false;
  }
  if (!productDetails.presentEstimatedValue) {
    value = true;
  }
  return value;
}

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