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

268
Vistas
How can I get a specialized log() to accept many arguments?

I have been using this logger in node:

// https://stackoverflow.com/questions/9781218/how-to-change-node-jss-console-font-color
function logC(text) {
  console.log('\x1b[36m%s\x1b[0m', text);
}

However it does not work for multiple arguments. I want to be able to use it like:

logC(text1, text2)

Obviously, I could write out the arguments in the function signature but I was hoping there was a way to do it with the built in arguments.

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

0

I think you are looking for this

function logC(...args) {
  args.forEach((arg) => {
    console.log('\x1b[36m%s\x1b[0m', arg);
  })
}
    
logC('a', 'b', 'cccc', 'dsff') // This gives the output
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