New features:
console.timeLog(): Allows logging intermediate timestamps for an active timer, making it easier to analyze intermediate steps within a single execution flow.
console.timestamp(): Adds the ability to log explicit timestamps to the console, useful for marking significant events during execution.
performance.now(): Provides a high-resolution time API (milliseconds with sub-millisecond precision), ideal for accurate performance measurement and benchmarking.
Demo App Updates