This repository has been archived on 2024-01-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tyme.js/tests/dateTest.ts
2022-05-07 13:49:57 +03:00

19 lines
359 B
TypeScript

import TymeJS from "../src";
let d: Date = new Date();
for ( let i = 0; i < 7; i++ ) {
const a = new TymeJS(d);
console.log(d, {
single: a.getDate("j"),
double: a.getDate("d"),
dowdouble: a.getDate("w"),
full: a.getDate("l"),
short: a.getDate("D"),
});
d.setDate(d.getDate() + 1);
}