August 2018
Beginner
361 pages
7h 28m
English
All the code we have looked at so far has essentially been linear. That is, execution of the code starts from the top and goes straight through to the bottom. The only change to this linear nature of execution is when we make a function call. Doing that transfers control to the function, but all the code inside a function also goes straight through from top to bottom. But one of the most powerful things about code is the ability to make a decision and to take a path based on that decision.
Flowcharting
The if statement
Comparison operators ...
Read now
Unlock full access