Can anyone help me to change Gregorian date to Persian in JavaScript? I want to use it in HTML and JavaScript.
You can use jalali-moment as easy as the following code
import * as moment from 'jalali-moment'; let persianDate = moment("1989/1/24").locale('fa').format('YYYY/M/D'); // 1367/11/4
demo in plunker