web api instance method
Performance: clearMeasures() method
Available in workers
The clearMeasures() method removes all or specific PerformanceMeasure objects from the browser’s performance timeline.
Syntax
clearMeasures()
clearMeasures(name)
Parameters
nameOptional- : A string representing the
nameof thePerformanceMeasureobject. If this argument is omitted, all entries with anentryTypeof"measure"will be removed.
- : A string representing the
Return value
None (undefined).
Examples
Removing measures
To clean up all performance measure, or just specific entries, use the clearMeasures() method like this:
// Create a bunch of measures
performance.measure("from navigation");
performance.mark("a");
performance.measure("from mark a", "a");
performance.measure("from navigation");
performance.measure("from mark a", "a");
performance.mark("b");
performance.measure("between a and b", "a", "b");
performance.getEntriesByType("measure").length; // 5
// Delete just the "from navigation" measure entries
performance.clearMeasures("from navigation");
performance.getEntriesByType("measure").length; // 3
// Delete all of the measure entries
performance.clearMeasures();
performance.getEntriesByType("measure").length; // 0
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.