Profiling JavaScript Code

What profiling pattern is demonstrated here?
const profiler = new Profiler();
try {
  profiler.start('expensiveOperation');
  // Complex operation
} finally {
  profiler.stop();
}
Next Question (9/16)