Skip to main content

now

method Performance.now
Jump to headingPerformance.now(): number

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

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

Return Type Jump to heading

number
Back to top