You are correct. and a Single promise returns all the data and it will complete the task faster than multiple promises.
const member=await currentMember.getMember();
const BirthCountry= member.contactDetails.addresses[0].country;
const CurrentCity = member.contactDetails.addresses[1].city;
const DOB = member.contactDetails.birthdate;