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

219
Vistas
Convert Keys in an array to Lower case & remove spaces between keys if available (JS)

I need to convert Keys into lowercases and remove the spaces between them if any. All the keys are Dynamic and could be any number of keys. Keys might contain alphanumeric along with special characters.Javascript or Typescript anything would do for me. I'm little stuck here.

Current JSON :

[
    {
      "Outdated Label (Key1)": "Outdated Label1",
      "Outdated Value": "Outdated Value"
    },
    {
      "Outdated Label (Key1)": "Outdated Label2",
      "Outdated Value": "Outdated Value2"
    },
    {
      "Outdated Label (Key1)": "Outdated Label3",
      "Outdated Value": "Outdated Value3"
    },
    {
      "Outdated Label (Key1)": "Outdated Label4",
      "Outdated Value": "Outdated Value4"
    }
  ]

Expected JSON :

 [
    {
      "outdatedlabel(key1)": "Outdated Label1",
      "outdatedvalue": "Outdated Value"
    },
    {
      "outdatedlabel(key1)": "Outdated Label2",
      "outdatedvalue": "Outdated Value2"
    },
    {
      "outdatedlabel(key1)": "Outdated Label3",
      "outdatedvalue": "Outdated Value3"
    },
    {
      "outdatedlabel(key1)": "Outdated Label4",
      "outdatedvalue": "Outdated Value4"
    }
  ]
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

I have taken a look at the problem and came up with a solution that works and is written in plain JavaScript. This solution works for the given array and any other array of objects that are not nested. As you want to have a new array we can use .map and then iterate over every key in the current object and modify the key in such a way that it satisfies your requirements.

let o = [
  {
    "Outdated Label (Key1)": "Outdated Label1",
    "Outdated Value": "Outdated Value"
  },
  {
    "Outdated Label (Key1)": "Outdated Label2",
    "Outdated Value": "Outdated Value2"
  },
  {
    "Outdated Label (Key1)": "Outdated Label3",
    "Outdated Value": "Outdated Value3"
  },
  {
    "Outdated Label (Key1)": "Outdated Label4",
    "Outdated Value": "Outdated Value4"
  }
]

let whitespace = new RegExp(/\s/g);
let lo = o.map((entry) => {
  let modified = {};
  Object.keys(entry).forEach((key) => {
    let value = entry[key];
    key = key
      .toLowerCase()
      .replace(whitespace, "");
    modified[key] = value;
  });
  return modified;
});

console.log(lo);
about 4 years ago · Juan Pablo Isaza Denunciar

0

Here is my solution, use map function.

var arr = [
    {
      "Outdated Label (Key1)": "Outdated Label1",
      "Outdated Value": "Outdated Value"
    },
    {
      "Outdated Label (Key1)": "Outdated Label2",
      "Outdated Value": "Outdated Value2"
    },
    {
      "Outdated Label (Key1)": "Outdated Label3",
      "Outdated Value": "Outdated Value3"
    },
    {
      "Outdated Label (Key1)": "Outdated Label4",
      "Outdated Value": "Outdated Value4"
    }
  ];

const expectedJson = arr.map(function(item) {
  for(const key of Object.keys(item)) {
    const lowerCaseKey = key.toLowerCase().replace(/\s/g, '');
    if (lowerCaseKey !== key) {
      item[lowerCaseKey] = item[key];
      delete item[key];
    }
  }
  return item;
})

console.log(expectedJson)
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