
R: Control Flow II
Control flow (or flow of control) is simply the order in which we code and have our statements evaluated. These allow you to control the flow of execution of a script typically inside of a function. There are two types of Control Flow Statement. 1. Single Iterative statements. 2. Multiple Iterative statements. We already discussed…