Salesforce Realtime Training Session 05 by Swapna
Loops: Repeating of a statement till a condition is succeeded is called Loop
-- Do-while : Same work doing again and again is do while repeating the work
do
code
whilecondition
-- while : Repeatedly excutes block of code as long as a particular Boolean condition remains true
whilecondition
code logic
-- For
primitive data type
forinitialize; exit_conidition;increment_statement
code logic
forinteger i=0;i10;i++
logic
Collection data type:
For - for SOQL
Download
0 formats
No download links available.
Salesforce Realtime Training | Apex | Loops | Do While | While | For | Session 05 | NatokHD