Skip to main content
method Performance.now
private
Performance.now(): number
Deprecated

Returns a current time from Deno's start in fractional milliseconds.

const t = performance.now();
console.log(`${t} ms since start!`);

Return Type

number
Back to top