PowerShell - Functions
What output will the following PowerShell function produce when piping the numbers 4, 5, and 6?
function Multiply-ByThree {
param([Parameter(ValueFromPipeline=$true)]$Number)
process { $Number * 3 }
}
4,5,6 | Multiply-ByThree