• label {string} 计数器的显示标签。 默认值: 'default'

    重置特定于 label 的内部计数器。

    1. > console.count('abc');
    2. abc: 1
    3. undefined
    4. > console.countReset('abc');
    5. undefined
    6. > console.count('abc');
    7. abc: 1
    8. undefined
    9. >