concatenation
RU: конкатенация
Joining two or more sequences — strings, arrays, or byte buffers — end-to-end to form a single sequence. For immutable strings (Java, Python, JavaScript), each + in a loop allocates a new object; the fix is a mutable builder (StringBuilder, Array.join, Buffer) that appends in-place and materializes the result once.