Apologies if this question has already been asked and answered, but I've been looking for an hour or so and haven't find a solution that helped.
Can anyone tell me how to break a long string into two lines in this code within my js file:
console.log(percentage);
var message;
if (percentage === 1) {
message = 'This is the FIRST line. Then there needs to be a SECOND line BENEATH the first line.'
} else if (percentage >= .5) {
message = 'This is the FIRST line. Then there needs to be a SECOND line BENEATH the first line.'
}
} else {
message = 'This is the FIRST line. Then there needs to be a SECOND line BENEATH the first line.'
}