Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

std/datetime/mod.ts>HOUR

Deno standard library
Go to Latest
variable HOUR
Re-export
import { HOUR } from "https://deno.land/std@0.214.0/datetime/mod.ts";

The number of milliseconds in an hour.

Examples

Example 1

import { HOUR } from "https://deno.land/std@0.214.0/datetime/constants.ts";

console.log(HOUR); // => 3600000 (60 * 60 * 1000)

type

number