Performance.now - Web documentation
method Performance.now
allow-hrtime
Performance.now(): number

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

Use the permission flag --allow-hrtime to return a precise value.

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

Return Type

number