Use adjacent strings to concatenate string literalsDRT-W1120
DO use adjacent strings to concatenate string literals.
BAD:
raiseAlarm(
'ERROR: Parts of the spaceship are on fire. Other ' +
'parts are overrun by martians. Unclear which are which.');
GOOD:
raiseAlarm(
'ERROR: Parts of the spaceship are on fire. Other '
'parts are overrun by martians. Unclear which are which.');