“JSON -Array” Code-Antworten

JS erstellen 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

JSON -Array

// JSON array
[ "apple", "mango", "banana"]

// JSON array containing objects
[
    { "name": "John", "age": 22 },
    { "name": "Peter", "age": 20 }.
    { "name": "Mark", "age": 23 }
]
SAMER SAEID

JSON -Objektarray

const Object = {a:1,
                 b:'ab'
                };


const Array = [1,
                 'ab',
                 4
                ];
Comfortable Crocodile

JSON -Array

'["Ford", "BMW", "Fiat"]'
naly moslih

Ähnliche Antworten wie “JSON -Array”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen