Generation

generate functionSun, 13 Nov 2022

Get half of the average of several numbers

function getHalfAvg(...$nums): float { return array_sum($nums) / count($nums) / 2.0; } getHalfAvg(1, 2, 3)

Want to kickstart your project?Use the new AI Studio to create your code