Example of an operator: Concatenation

<p id="testing">original text and</p>

Sass:

#testing:after{
  content: " some" + " more" + " text";
}