“Metode Peta Array Buat Objek” Kode Jawaban

JavaScript membuat array objek dengan peta

var arr = [{
  id: 1,
  name: 'bill'
}, {
  id: 2,
  name: 'ted'
}]

var result = arr.map(person => ({ value: person.id, text: person.name }));
console.log(result)
Inexpensive Iguana

Metode Peta Array Buat Objek

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 snippetHide results
Bekhruz Sharapov

Jawaban yang mirip dengan “Metode Peta Array Buat Objek”

Pertanyaan yang mirip dengan “Metode Peta Array Buat Objek”

Lebih banyak jawaban terkait untuk “Metode Peta Array Buat Objek” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya