jacksmithdinogamerun a écrit : ↑09 juil. 2025, 12:48Tu peux utiliser `reduce()` pour regrouper les dates par nom, par exemple : `array.reduce((acc, obj) => { acc[obj.nom] = [...(acc[obj.nom] || []), obj.date]; return acc; }, {})`.
dino game
Very helpful. Thanks!