In this lesson, we cover Comparison Operators. Expressions can be joined to one another with operators to create compound expressions.
Resource:
Expression Operators -
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/langCon_apex_expressions_operators_understanding.htm
In this lesson, we create a Ternary operator example.
Resource:
Expression Operators -
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/langCon_apex_expressions_operators_understanding.htm
Apex provides a switch statement that tests whether an expression matches one of several values and branches accordingly.
Resource:
Switch Statements - https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/langCon_apex_switch.htm
In this lesson, we look at traditional For loops as well as a list or set iteration for loop, which iterates over all the elements in a list or set.
Resources:
Traditional For Loops
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/langCon_apex_loops_for_traditional.htm
L...