method Console.profileEnd
Jump to headingConsole.profileEnd(label?: string): void
Stops recording a performance profile
Examples Jump to heading
Jump to heading
Example 1
Example 1
console.profile('Performance Profile');
// ... code to profile
console.profileEnd('Performance Profile');
Parameters Jump to heading
optional
Jump to headinglabel: string
Profile label to stop
Return Type Jump to heading
void