JavaScript - Conditional statement: if, if else

By conditions we can control our program. thanks conditional statement we can control program running in two directions. if the condition is satisfied to continue running the program in a first direction, if not as the second direction. under the directions of the programme I think either statement or block of statements.

if, if else

Description

if (condition) statement1
if (condition) statement1 else statement2
Used keywords: if else

Input

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;

JavaScript

Other pieces of example codes:
if (i==16)
 {
    continue;
 }
 
if (x>1)
{
  x=1;
  y=y-1;
}
if ( x == 5 )
   --y;
if (x>0xabc)
  y = x / 0xa;    // y = 466
if (x>5)
  y = x / 0xa;  // y = 1
if (i==5)
    break;
Languages: en hu cz sk