最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Create pairs for every two elements in an array - Stack Overflow

programmeradmin0浏览0评论

How do I succinctly write a function such that it creates a new array of object using every pair of elements from an array?

Assume even number of elements.

Example input:

input = [1, 42, 55, 20, 3, 21]

Output:

output = [{x:1, y:42}, {x:55, y:20}, {x:3, y:21}]

Edit: This is the current solution I have which I am not a fan of:

[1, 42, 55, 20, 3, 21].reduce(
    (acc, curr, i) => (
      i % 2 === 0
        ? [...acc, { x: curr }]
        : [...acc.slice(0, -1), { x: acc[acc.length - 1].x, y: curr }]), []
  )

How do I succinctly write a function such that it creates a new array of object using every pair of elements from an array?

Assume even number of elements.

Example input:

input = [1, 42, 55, 20, 3, 21]

Output:

output = [{x:1, y:42}, {x:55, y:20}, {x:3, y:21}]

Edit: This is the current solution I have which I am not a fan of:

[1, 42, 55, 20, 3, 21].reduce(
    (acc, curr, i) => (
      i % 2 === 0
        ? [...acc, { x: curr }]
        : [...acc.slice(0, -1), { x: acc[acc.length - 1].x, y: curr }]), []
  )
Share Improve this question edited Mar 11, 2020 at 15:04 tony asked Mar 11, 2020 at 14:28 tonytony 1,3261 gold badge12 silver badges28 bronze badges 3
  • Can you show us how you tried to acplish this? We can help you get your solution working – user47589 Commented Mar 11, 2020 at 14:31
  • HI @Amy, I have a solution with reduce but I didn't think it was legible :/ – tony Commented Mar 11, 2020 at 15:00
  • Share it with us please. – user47589 Commented Mar 11, 2020 at 15:01
Add a ment  | 

5 Answers 5

Reset to default 7

You can use a for loop which increment by the value of 2

const input = [1, 42, 55, 20, 3, 21];
const res = [];
for(let i = 0; i < input.length; i+=2){
  res.push({x:input[i], y: input[i + 1]});
}
console.log(res)

I think breaking it into two steps helps with readability but it is marginally less efficient.

[1,42,55,20,3,21]
    .map((n, i, arr) => ({ x: n, y: arr[i + 1] }))
    .filter((n, i) => i % 2 === 0);

You can just iterate the array. For odd length last value won't be paired, since no pair is available

    const array = [1, 42, 55, 20, 3, 21];
    var output = [];
    for (index = 0; index < array.length-1; index+=2) { 
        output.push({x:array[index], y:+array[index+1]});
    } 
    console.log(output);

    

I think a simplification of your technique is readable enough:

 const toPoints = coordinates => 
   coordinates .reduce (
     (acc, curr, i, all) => (i % 2 === 0 ? acc : [...acc, { x: all[i - 1], y: curr }]), 
     []
   )
  
console .log (toPoints ([1, 42, 55, 20, 3, 21]))

We simply add the next pair only on the even indices. Of course this will fail if you want an odd-length array to end up with a final object with an x- but not a y- property.

An approach which has benefit of being easy to reason about:

const arr = [1,42,55,20,3,21];
const pairs = [...Array(arr.length/2).keys()].map(c => ({x: arr[2*c], y: arr[2*c + 1]}));
发布评论

评论列表(0)

  1. 暂无评论