数组变成对象数组简单方法

let arrs=['ABG','EDFR']
let objects = arrs.map(function(url) {  
  return { name: url };  
});  

你可能感兴趣的:(javascript)