local stringA = "aaa"
stringA ..= "aaa"
print(stringA) --aaaaaa
You may already be aware of compound operators in the form of (+= and -= etc.), however a compound operator also exists for the concatenation operator and it follows a similar form/style to the other compound operators (as seen in the provided code snippet above).