I have an array which is taking values over the space of a second and calculating the average. The array is then permanently storing the values. I need them to remove the values after the average has been calculated. I have tried clearing the array at the end of the calculateAverage function using levelMeasurements = []; and levelMeasurements = 0; but that does not work.
Any help on this would be greatly appreciated, thanks!
My code:
var levelMeasurements = [];
function collectLevelMeasurements() {
    levelMeasurements.push(averagingLevel);
}
var collectInterval = window.setInterval(collectLevelMeasurements, 0);
function calculateAverage() {
    window.clearInterval(collectInterval);
    var avg = 0;
    for (counter = 0; counter < levelMeasurements.length; counter++) {
        avg += levelMeasurements[counter] / levelMeasurements.length;
    }
    averageAbsoluteLevel = Math.abs(avg);
    averageDbLevel = Tone.gainToDb(averageAbsoluteLevel) * scale + offset;
    console.log("Measure for 5 minutes: average level is:" + averageDbLevel);
}
window.setInterval(calculateAverage, 1000);
 
     
     
    