Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

std/datetime/constants.ts>MINUTE

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
variable MINUTE
import { MINUTE } from "https://deno.land/std@0.211.0/datetime/constants.ts";

The number of milliseconds in a minute.

Examples

Example 1

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

console.log(MINUTE); // => 60000 (60 * 1000)

type

number