• Avoid Break(), Continue(), and Return() functions for speed. Using them might make it easier for you to read the script.
• Functions versus expressions:
– User-defined functions have overhead for calling them but might make it easier for you to read the script.
– Expressions have no overhead for calling but might make it more difficult for you to read the script.