February 2017
Beginner
737 pages
15h 22m
English
The functions that I've shown so far in this chapter have either explicitly used the return keyword, or used write-host to output text to the console instead of returning the data. However, the mechanism that PowerShell uses for function output is much more complex for several reasons.
The first complication is that the return keyword is completely optional. Consider the following four functions:

We can see that they all output the same value (100) by adding them all together:

The reason that these functions do the same thing is that PowerShell ...
Read now
Unlock full access