Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

compareAsc

import { compareAsc } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// Compare 11 February 1987 and 10 July 1989:
const result = compareAsc(new Date(1987, 1, 11), new Date(1989, 6, 10))
//=> -1
@example
// Sort the array of dates:
const result = [
  new Date(1995, 6, 2),
  new Date(1987, 1, 11),
  new Date(1989, 6, 10)
].sort(compareAsc)
//=> [
//   Wed Feb 11 1987 00:00:00,
//   Mon Jul 10 1989 00:00:00,
//   Sun Jul 02 1995 00:00:00
// ]
function compareAsc<DateType extends Date>(dateLeft: DateType | number | string, dateRight: DateType | number | string): number;
§
compareAsc<DateType extends Date>(dateLeft: DateType | number | string, dateRight: DateType | number | string): number
[src]

§Type Parameters

§
DateType extends Date
[src]

§Parameters

§
dateLeft: DateType | number | string
[src]
  • The first date to compare
§
dateRight: DateType | number | string
[src]
  • The second date to compare

§Return Type

§
number
[src]

The result of the comparison