/NepToEngDateConverter

Converts Nepali Date to English Date (using javascript).

Primary LanguageJavaScript

NepToEngDateConverter

Converts Nepali Date to English Date (using javascript).

How to Use

Call DateConverter function with parameters date, month and year.

Eg. DateConversion( date, month, year )
or
var result = DateConversion(25, 9, 2046);
result is obtained in the form "year/month/date"

You can get them independently by calling:
getDate()
getMonth()
getYear()
getDay() -> To get the day ( 0 -> Sunday, 6 -> Saturday )

Note

This code was originally written in C#.