I have a conditional statement that I would like to break into separate lines because it is too long for 1 line.
I know in vbscript that to continue a line you would use the "_" character.
How do you accomplish this in javascript?
If (Condition1) ||
(Condition2) ||
(Condition3) ||
{
statements
}
I know in vbscript that to continue a line you would use the "_" character.
How do you accomplish this in javascript?
If (Condition1) ||
(Condition2) ||
(Condition3) ||
{
statements
}