method Console.countResetConsole.countReset(label?: string): voidDeprecatedResets the internal counter specific to label. > console.count('abc'); abc: 1 undefined > console.countReset('abc'); undefined > console.count('abc'); abc: 1 undefined > Parametersoptionallabel: string = 'default'The display label for the counter. Return Typevoid