Javascript Reserved Word – ELSE ELSE is part of the IF. ELSE can be used to have some javascript code run as a condition other than the main stream logic (expression) in the IF statement. The basic syntax for an ELSE statement: if (expression) [{ [code;]+ }] | [code;] else [{ [code;]+ }] | [code;] … Continue reading ELSE
↧