ES6-map-an-array-of-objects-to-return-an-array-of-objects-with-new-keys
var arr = [{
id: 1,
name: 'bill'
}, {
id: 2,
name: 'ted'
}]
var result = arr.map(person => ({ value: person.id, text: person.name }));
console.log(result)
Run code snippet
code fighter