VH
Size: a a a
VH
R
А
А
SO
SO
В
В
RR
RR
RR
В
E
VH
VH
split(" ").map(x => x[0].toUpperCase()).join("")
SO
'Alan Balan Xalan'.split(' ').map(e => e[0].toUpperCase()).join('')
t
words.split(" ").map(([a]) => a.toUpperCase).join("")
t
split(" ").map(x => x[0].toUpperCase()).join("")
CM