about | help | code help+videos | done | prefs |
An array contains the ages of all members of a football team. Return the average of all the ages. Note: The array may not be full of ages; once you encounter an age of zero, this signifies that this element and the remaining elements are not valid ages and should not be factored into the average age. commonAlgAverageAge([20, 25, 27]) → 24.0 commonAlgAverageAge([30, 33]) → 31.5 commonAlgAverageAge([30, 33, 0, 0]) → 31.5 ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 10 Post-solution available
Copyright Nick Parlante 2017 - privacy