SaeedDev94 / jalali-ts

Parse and interact with jalali date
MIT License
19 stars 1 forks source link

پیدا کردن روز هفته #2

Closed behroozbc closed 2 years ago

behroozbc commented 2 years ago

سسلام چطوری میشه روز هفته رو به دست بیاریم؟

SaeedDev94 commented 2 years ago

You can use native JS Date:

const jalali: Jalali = Jalali.now();
const date: Date = jalali.date;
console.log(date.getDay());

Ref: Date.prototype.getDay()