December 2014
Beginner to intermediate
240 pages
6h 54m
English
Using procedures to name sequences of code gives you two advantages:
You can hide the work required to perform a task, which could be big and complicated, behind a single block that has a descriptive name.
You can reduce duplicate code, which makes your app easier to debug, update, and read. Having an excessive number of duplicated blocks can make debugging or changing an app needlessly difficult.
When creating a procedure, it is always a good idea to assign it a descriptive name. This adds meaning and makes it easier for you ...
Read now
Unlock full access