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

compareDesc

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