I'm new on React, could you say me what's the meaning of this?
const new_venues = this.state.venues.map((venue) =>
place_id === venue.place_id ? { ...venue, open : !venue.open } : { ...venue, open: false });
I know the syntax cond ? cond_true : cond:false, but I don't know the meaning of ...venue