NV
Size: a a a
AC
NV
СС
СС
S
NV
const jsonBody = pm.response.json();
const originArray = jsonBody.Specialties.map(specialty => specialty.origin)
NV
>> ['africa', 'europe']
S
const jsonBody = pm.response.json();
const originArray = jsonBody.Specialties.map(specialty => specialty.origin)
NV
const jsonBody = pm.response.json();
const originArray = jsonBody.Specialties.map(specialty => specialty.origin ? specialty.origin : specialty.city)
VB
НК
VB
NV
VB
NV
VB
NV
S
const jsonBody = pm.response.json();
const originArray = jsonBody.Specialties.map(specialty => specialty.origin ? specialty.origin : specialty.city)
D