“JS -Kartenarray zum Wörterbuch” Code-Antworten

Array zum Wörterbuch JavaScript

let data = [
  {id: 1, country: 'Germany', population: 83623528},
  {id: 2, country: 'Austria', population: 8975552},
  {id: 3, country: 'Switzerland', population: 8616571}
];

let dictionary = Object.assign({}, ...data.map((x) => ({[x.id]: x.country})));
// {1: "Germany", 2: "Austria", 3: "Switzerland"}
rawand-faraidun

JS -Kartenarray zum Wörterbuch

// Convert array string to dictionary, ex: ['choice_a', 'choice_b'] => {choice_a: true, choice_b: true }
const paramsChecked = Object.assign({}, ...listChecked.map((x) => ({[x]: true})))
Purple Team

Ähnliche Antworten wie “JS -Kartenarray zum Wörterbuch”

Fragen ähnlich wie “JS -Kartenarray zum Wörterbuch”

Weitere verwandte Antworten zu “JS -Kartenarray zum Wörterbuch” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen