deno.com

variable navigator

Provides access to the Deno runtime's Navigator interface, which contains information about the environment in which the script is running.

Examples #

#
// Log information about the runtime environment
console.log(`Hardware concurrency: ${navigator.hardwareConcurrency}`);
console.log(`User agent: ${navigator.userAgent}`);

Type #