JavaScript でデータが次のように見えるように、レコードから「id」、「email」、「last_name」のみを取得するにはどうすればよいですか?
リーリーP粉0578693482024-01-17 00:07:18
const records = [{id: 231, first_name: "Jack", last_name: "Aston", email: "jack55@xyz.com"}, {id: 232, first_name: "Roy", last_name: "Dillon", email: "roy@xy.com"}, {id: 233, first_name: "Jacy", last_name: "Wilson", email: "jacy@x.com"}] const fields = ['id', 'email', 'last_name'] console.log(records.map(i=>Object.fromEntries(fields.map(f=>[f, i[f]]))))