gpt4 book ai didi

javascript - 将对象值与另一个对象的值交换。 *Javascript*

转载 作者:行者123 更新时间:2023-12-03 02:07:32 25 4
gpt4 key购买 nike

我的任务是编写一个函数,将元素的值与第二个对象中同一位置的值交换。

{placeOne:10,placeTwo:20},{ten:"firstPlace",twenty:"secondPlace"}   

{placeOne:"firstPlace",placeTwo:"secondPlace"},{ten:10,twenty:20} // should equal this

我想尝试一种将对象值插入数组的方法,然后循环遍历该对象并将每个位置设置为数组中的位置。

但是我在同时循环对象和数组时遇到了麻烦,所以我无法用这种方式解决它。

这是我到目前为止所拥有的。

function swapObj(obj1,obj2){
let obj1Arr = [];
let obj2Arr = [];

for(var i in obj1) {
obj1Arr.push(obj1[i]);
}

for(var k in obj2) {
obj2Arr.push(obj2[k])
}

swapObj({placeOne:10,placeTwo:20,placeThree:30,},
{ten:"firstPlace",twenty:"secondPlace",thirty:"thirdPlace"}
)

最佳答案

如果我正确理解你的问题,这应该可以做到(每个步骤都用注释解释):

const swapValues = (a, b) => {
// obtain arrays of entries ([key, value] pairs) of input objects
// assuming the entries come in insertion order,
// which is true in practice for all major JS engines
const entriesA = Object.entries(a)
const entriesB = Object.entries(b)

// output is a pair of objects:
// first with keys from a, but values from b
// at corresponding entry indices
// second with keys from b, but values from a
// at corresponding entry indices
// assuming both objects have the same number of entries
// (might want to check that)
return entriesA.reduce(
// for each entry from a with keyA, valueA and index
(acc, [keyA, valueA], index) => {
// get corresponding entry from b
const entryB = entriesB[index]
// with keyB and valueB
const [keyB, valueB] = entryB
// put valueB at keyA in the first output object
acc[0][keyA] = valueB
// put valueA at keyB in the second output object
acc[1][keyB] = valueA

return acc
},
// initially the output objects are empty:
[{}, {}]
)
}

console.log(swapValues(
{placeOne: 10, placeTwo: 20},
{ten: "a", twenty: "b"}
)) // -> [ { placeOne: 'a', placeTwo: 'b' }, { ten: 10, twenty: 20 } ]

您可能需要使其适应您的 JS 版本。请注意,输入对象没有发生变化 - 您将获得两个全新的对象(如果它们具有嵌套对象作为值,则可能与您的输入对象共享某些结构)。

关于javascript - 将对象值与另一个对象的值交换。 *Javascript*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49741888/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com