Похожие чаты

Hmm. Guys, say you have {x, y} and you have an

array with [1, 2], is there an elegant way to merge it so it's just {x:1, y:2}?

11 ответов

15 просмотров

{x: 'x', y: 'y'} you mean ?

You want to use the keys of an object to fill in the array values? 🤔

let obj = {x: '', y: ''} let arr = [1, 2] Object.keys(obj).reduce((newObj, item, i) => { newObj[item] = arr[i] return newObj }, {})

J-: Vaccinated 🇨🇦 Автор вопроса
Misan
You want to use the keys of an object to fill in t...

I want to fill in X amount of keys depending on how many elements are in the array

J-: Vaccinated 🇨🇦 Автор вопроса
Danial Dezfouli
let obj = {x: '', y: ''} let arr = [1, 2] Object....

I noticed it crashes after changing the object size, so I made it arr[i] || obj[item] and it's working good 👌

const [x, y] = [1, 2]; const obj = {x, y};

J-: Vaccinated 🇨🇦 Автор вопроса
Banana
const [x, y] = [1, 2]; const obj = {x, y};

And if they're not exactly the same size? For example {x, y, z:3} and [1, 2] for {x:1, y:2, z:3}?

J-: Vaccinated 🇨🇦 Автор вопроса
Banana
I'm not entirely sure what you're trying to do.

Here's a few examples. {x} • [1, 2] = {x:1} {x, y} • [1, 2] = {x:1, y:2} {x, y, z} • [1, 2] = {x:1, y:2, z}

J-: Vaccinated 🇨🇦 Автор вопроса
Danial Dezfouli
let obj = {x: '', y: ''} let arr = [1, 2] Object....

Just pop the values in one by one until you can't fit anymore into either one or until it's done lol but the solution here worked

Похожие вопросы

Обсуждают сегодня

30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Anyone knows where there are some instructions or discort about failed bridge transactions ?
Jochem
21
Also, why can’t the community have a vote/ say when it comes to initiatives like buybacks. Isn’t the point of crypto decentralisation? Don’t we deserve input as long term supp...
👨🏽‍🦰
13
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
Привет)) уже кажется эту тему перемусолили, но вот я так и не понял. Я сейчас сижу на 27дюймов 2к мониторе. На Актуальной макоси, если я куплю 27д 4к монитор: - будет ли изобр...
Vladislav Piskunov
15
any reference of this implementation?
BitBuddha
29
Hi guys, any problem with Pulsebrige? Trying to transfer from wETH to ETH. First it tells me to connect my metamask "through mobile app" not desktop. Then I did and confirmed ...
Snowflakecrypto
13
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
13
Страшнейшая правда про списки ЦБ. С первых дней жизни P2P сферы, молодые человеки, начитавшись законодательной базы и "внутренних" документов, решили, что им противостоит сер...
Foxcool
3
Карта сайта