简体   繁体   中英

How do I convert an array of integers to an array of objects?

I would like to convert and array in this format

var values = [1,2,3]; 

To an array in this format

var data = [ 
  {x: 0, value: 1},
  {x: 1, value: 2},
  {x: 2, value: 3}
];

You could simply use the Array.prototype.map method:

var data = values.map(function(el, i) {
   return {
     x: i,
     value: el
   }
});

Maybe something like this will do the trick:

var values = [1,2,3];
var _dict = [];

for (var i = 0; i < values.length; i++) {
   _dict.push( {x: i, value: values[i]} );
}

JSFiddle

A basic option would be:

var values = [1,2,3]; 

var newValues = [];
for(var i = 0;i < values.length;i++){
    newValues.push( {x: i, values: values[i]} );
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM