Description
I was wondering, why don’t we have an operator that performs the opposite of the concatenating assignment operator .=? This new operator could prepend a value:
$a = " World";
$a =. "Hello"; // Result: "Hello World!"
What's the problem with this?