“JS Crie JSON Array” Respostas de código

JS Crie JSON Array

var employees = {
    accounting: []
};

for(var i in someData) {    

    var item = someData[i];   

    employees.accounting.push({ 
        "firstName" : item.firstName,
        "lastName"  : item.lastName,
        "age"       : item.age 
    });
}
Nutty Narwhal

JavaScript Crie objeto JSON da Array

var array = ['a', 1, 'b', 2, 'c', 3],
    object = {},
    i

for (var i = 0; i < array.length; i += 2) {
    object[array[i]] = array[i + 1];
}

console.log(object);
Jaskaran

Respostas semelhantes a “JS Crie JSON Array”

Perguntas semelhantes a “JS Crie JSON Array”

Mais respostas relacionadas para “JS Crie JSON Array” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código