Introduction to Functions
Explore the fundamentals of functions, including how to write, use, and return values from them. Understand passing arguments, and managing local and global variables to create reusable and readable code.
We'll cover the following...
We'll cover the following...
Overview
There are a number of useful concepts that we, as programmers, should always follow. One is to write code that is easy to read and understand. Another is to avoid duplicating code. When you start out ...