👉 Calcbound is a function in JavaScript that calculates the average of an array of numbers. It takes an array of numbers as input and returns the average of those numbers. The formula used to calculate the average is: ``` average = (sum / count) ``` where: - `sum` is the sum of all the numbers in the array. - `count` is the number of elements in the array. Example usage: ```javascript let numbers = [1, 2,