A small question, but one I'm genuinely curious about.
Is there anything inherently better or worse with
"a string with a char: " + 'x'
compared to
"a string with a char: " + "x"
?
They both work, but I am wondering if either has any performance or efficiency implications--minor as they may be.
Thanks.