function dayOfYearimport { dayOfYear } from "https://dotland.deno.dev/std@0.181.0/datetime/mod.ts"; dayOfYear(date: Date): numberReturns the number of the day in the year. ExamplesExample 1 import { dayOfYear } from "https://deno.land/std@0.181.0/datetime/mod.ts"; dayOfYear(new Date("2019-03-11T03:24:00")); // output: 70 Parametersdate: DateReturnsnumberNumber of the day in year