我想知道我如何切換我的數組中的值由其屬性名稱。如何通過屬性值切換數組值
例如具有下列陣列我想切換(按鈕)具有名爲一個和/或打開和關閉b等屬性的所有值。
輸入
const arr_input = [
{ a: 1, b: 2, c: 3 },
{ a: 3, b: 9, c: 12 }
];
輸出
const arr_output = [
{ b: 2, c: 3 },
{ b: 9, c: 12 }
];
https://jsfiddle.net/cdp0a539/
你是什麼_「切換」的意思_?您似乎在問,如何刪除並重新向數組添加值。 – evolutionxbox
@evolutionxbox正確。我想刪除並添加相同的值/多個值。例如,我想切換'a'和'b'。 – debugmode