method Console.timeEndConsole.timeEnd(label?: string): voidStops a timer that was previously started ExamplesExample 1 console.time('operation'); // ... some code console.timeEnd('operation'); // Prints: operation: 1234ms Parametersoptionallabel: stringTimer label to stop. Defaults to 'default' Return Typevoid