Coggle requires JavaScript to display documents.
1, Assignment Operators 2. Arithmetic Operators 3. Relational Operators 4. Logical Operators 5. Increment and Decrement Operators
if ( condition ) statement1;
if (condition) statement1 else statement2
if (condition1) if (condition2) any statement if condition1 AND condition2 =TRUE
switch (expression) { case value1: /* any statements if expression = value * / break : . case valueN: /*any statements if expression=valueN*/ break default : /*any statements id none of expression is match*/ break }
grade = 'A'
grade = 'B'
grade = 'C'
grade = 'D'
grade = 'F'