Skip to main content
Very Popular
Go to Latest
function addMilliseconds
import { addMilliseconds } from "https://deno.land/x/date_fns@v2.15.0/index.js";

Examples

// Add 750 milliseconds to 10 July 2014 12:45:30.000: var result = addMilliseconds(new Date(2014, 6, 10, 12, 45, 30, 0), 750) //=> Thu Jul 10 2014 12:45:30.750

Parameters

dirtyDate
  • the date to be changed
dirtyAmount
  • the amount of milliseconds to be added. Positive decimals will be rounded using Math.floor, decimals less than zero will be rounded using Math.ceil.