“Zmień nazwę właściwości obiektu w tablicy JavaScript” Kod odpowiedzi

Zmień nazwę właściwości obiektu w tablicy JavaScript

const columns = [
    { name: 'OrderNumber', title: 'Order Number' },
    { name: 'strawberry', title: 'Strawberry' },
    { name: 'vanilla', title: 'Vanilla' }
]

const options = columns.map(function(row) {

   // This function defines the "mapping behaviour". name and title 
   // data from each "row" from your columns array is mapped to a 
   // corresponding item in the new "options" array

   return { value : row.name, label : row.title }
})

/*
options will now contain this:
[
    { value: 'OrderNumber', label: 'Order Number' },
    { value: 'strawberry', label: 'Strawberry' },
    { value: 'vanilla', label: 'Vanilla' }
];
*/
Naughty Nightingale

Zmień właściwość w tablicy obiektów JavaScript

//change in array itself without need to another one 
arr.map(el =>{ el.bar == 1 && el.baz--} ); // don't forget {} in arrow function
Salsabeel woh woh

Zmień nazwę właściwości obiektu w tablicy JavaScript

const columns = [
    { name: 'OrderNumber', title: 'Order Number' },
    { name: 'strawberry', title: 'Strawberry' },
    { name: 'vanilla', title: 'Vanilla' }
];

const newColumns = columns.map( item => {
  const { name: value, ...rest } = item;
  return { value, ...rest }
 }
);

console.log( newColumns );
 Run code snippet
Naughty Nightingale

Odpowiedzi podobne do “Zmień nazwę właściwości obiektu w tablicy JavaScript”

Pytania podobne do “Zmień nazwę właściwości obiektu w tablicy JavaScript”

Więcej pokrewnych odpowiedzi na “Zmień nazwę właściwości obiektu w tablicy JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu