performance.clearMeasures() - видаляє PerformanceMeasure.
performance.clearMeasures(name);
performance - об'єкт performance.
name - не обов'язково вказувати. Назва об'єкта PerformanceMeasure.
clearMeasures() метод об'єкта performance який видаляє об'єкт PerformanceMeasure за вказаною назвою з буфера продуктивності браузера.
Якщо name не вказана тоді видаляє всі об'єкти PerformanceMeasure.
performance.clearMeasures();
performance.clearMeasures('test');
performance.mark('mark1');
/*
код час виконання якого необхідно заміряти
*/
performance.measure('test','mark1');
performance.clearMeasures();
var mas=performance.getEntriesByType('measure');
alert(mas.length); //0