View performance markers in order

Help us make DevTools Tips better! Fill out this survey to tell us more about your DevTools habits and frustrations.

Categories: Supported by:

View performance markers in order

When logging performance.timing events to the console, they appear in alphabetical order since they are properties of the PerformanceTiming object.

In order to view them in order, you can use console.table(performance.timing) and click on the column heading to sort them by time.

The console in Edge showing the PerformanceTiming object, with alphabetical properties, and then using console.table to sort properties.