Map JS via le tableau et le tableau de retour d'objets

const func = (arr) => arr.map((person) => ({ name: person.name }));
Poor Panda