To concatenate the value of two or more variables into a single string and print it as the output, we need to make use of interpolation.
The following Less code,
#demo:after {
@var1: Hello;
@var2: World!!!;
content: "@{var1} @{var2}";
}
when compiled would set "Hello Wo...