performance.clearMeasures()

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