====== Variable d'un tableau ====== ===== 1ère écriture ===== const elements = this.state.clients.map(function (client) { return (
  • {client.nom}
  • ); }); ==== 2ème écriture ==== const elements = this.state.clients.map(client => (
  • {client.nom}
  • ));