以特定方式将两个数组组合成一个对象

Combine two arrays into an object in a specific way

我需要像这样从这两个数组中得到这两个组合。

const array1 = [ '0', '4', '8', '16', '24', '32', '40', '48', '56', '64' ]
const array2 = [ 'p', 'px', 'py', 'pt', 'pe', 'pb', 'ps', 'm', 'mx', 'my', 'mt', 'me', 'mb', 'ms']

// output 1
// const combine = {p: [p-0, p-4, p-8,...], px: [px-0, px-4, px-8,...].....}

// output 2
// const combineUpdate = {p: ["", p-0, p-4, p-8,...], px: ["", px-0, px-4, px-8,...].....} 
// add an empty string in each  array to get certain use case

// we can access values like this
// combine.p
// combine.px
// combineUpdate.ms

您可以将第一个数组映射为键和前缀,并将另一个数组的值作为后缀。

const
    array1 = [ '0', '4', '8', '16', '24', '32', '40', '48', '56', '64' ],
    array2 = [ 'p', 'px', 'py', 'pt', 'pe', 'pb', 'ps', 'm', 'mx', 'my', 'mt', 'me', 'mb', 'ms'],
    result = Object.fromEntries(array2.map(k => [k, array1.map(v => [k, v].join('-'))]));

console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }