“array ke kamus javascript” Kode Jawaban

array ke kamus 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

Array peta JS ke kamus

// 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

Jawaban yang mirip dengan “array ke kamus javascript”

Pertanyaan yang mirip dengan “array ke kamus javascript”

Lebih banyak jawaban terkait untuk “array ke kamus javascript” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya