Profiling JavaScript Code

What type of performance visualization does this code generate?
const flamegraph = new FlameGraph();
flamegraph.start();
try {
  recursiveFunction(depth);
} finally {
  flamegraph.stop();
  flamegraph.generateReport();
Next Question (14/16)