VL
Size: a a a
VL
DG
VL
DG
j
VL
j
ᅠ
this.campaign.tags.flatMap(
tag => (tag = this.getTag(tag)) ? tag.name : []
)
VL
this.campaign.tags.flatMap(
tag => (tag = this.getTag(tag)) ? tag.name : []
)
В
const tags = this.campaign.tags
.map(this.getTag)
.filter(Boolean)
.map(({ name }) => name);
S
const tags = this.campaign.tags
.map(this.getTag)
.filter(Boolean)
.map(({ name }) => name);
j
const tags = this.campaign.tags
.map(this.getTag)
.filter(Boolean)
.map(({ name }) => name);
В
j
В
GK