“JS Map Array to Dictionary” Ответ

массив к словарю 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 Map Array to Dictionary

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

Ответы похожие на “JS Map Array to Dictionary”

Вопросы похожие на “JS Map Array to Dictionary”

Больше похожих ответов на “JS Map Array to Dictionary” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования