Pattern: Missing use of adjacent strings for concatenation
Issue: -
DO use adjacent strings to concatenate string literals.
Example of incorrect code:
raiseAlarm(
'ERROR: Parts of the spaceship are on fire. Other ' +
'parts are overrun by martians. Unclear which are which.');
Example of correct code:
raiseAlarm(
'ERROR: Parts of the spaceship are on fire. Other '
'parts are overrun by martians. Unclear which are which.');