JavaScript <-> FreeBASIC | Conditional statement
JavaScript Used keywords: if else
if, if else
Description
if (condition) statement1
if (condition) statement1 else statement2
Input
- condition - Logical value The condition can be any expression
- statement1 - statements
- statement2 - statements
Examples
JavaScript
Conditional statement the possible of use:if (i > 10)
{
i =10; i = i - 1; i++;
}
if (i < 10) i = 10; else i=1;
.
FreeBASIC Used keywords: if else then end
if then end if, if then else end if
Description
if condition then
statements1
end if
if condition then
statements1
else
statements2
end if
Input
- condition - Logical value The condition can be any expression
- statements1 - statements
- statements2 - statements
Examples
FreeBASIC
Conditional statement the possible of use:if i > 10 then
i =10
i = i - 1
i=i+1
end if
if i < 10 then
i = 10
else
i=1
end if
Conditional statement in another programming language:
Differences to: