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

131
Vistas
create a json from array of string using javascript

After scraping an html table I have stored my data in the variable:

var data = ["header1", "header2", "a1", "a2", "b1", "b2", "c1", "c2"];

I want to create a json file in the form:

var json = [
  {
    "header1":"a1", 
    "header2":"a2"
  },
  {
    "header1":"b1", 
    "header2":"b2"
  },
  {
    "header1":"c1", 
    "header2":"c2"
  }
]

I know that I need

var headers={}; 

and load it with

headers["header1"]
headers["header2"]

I also need

var jsonObj = []; 

and push the array headers inside jsonObj:

jsonObj.push(headers);

Is it possible to create it?

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

0

I'll make some assumptions, and then attempt to answer your question.

To me, it seems your table looks something like:

header1 header2
a1 a2
b1 b2
c1 c2

Simply starting with the array you already have, we can then just pick out two and two values at the time. See the code below

const COLUMN_COUNT = 2
const data = ["header1", "header2", "a1", "a2", "b1", "b2", "c1", "c2"]

// this removes the headers from the data-list, 
// and stores them in the headers variable
const headers = data.splice(0, COLUMN_COUNT)
const output = []

while(data.length > 0) {
  const row = {}
  const values = data.splice(0, COLUMN_COUNT)
  for(const [idx, value] of values.entries()) {
    const header = headers[idx]
    row[header] = value
  }
  output.push(row)
}

console.log(output)

about 4 years ago · Juan Pablo Isaza Denunciar

0

There is actually no relation between header and the values, but assuming the first two elements are always header1 and header2 and the next 1 pair will be the value of header1 and header2 respectively, this might do it

const data = ["header1", "header2", "a1", "a2", "b1", "b2", "c1", "c2"];
const res = [];
const h1 = data[0];
const h2 = data[1];
data.splice(0, 2);


for (let i = 0; i < data.length; i++) {
    if (i % 2 != 0) {
        const payload = {};
        payload[h1] = data[i - 1];
        payload[h2] = data[i];
        res.push(payload);
    }
}

console.log(res)

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