Converts English Date to Nepali Date (using javascript).
Call DateConverter function with parameters date, month and year.
Eg.
DateConverter( 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 )
This code was orginally written in C# by Prerak Pradhan (https://twitter.com/prerakp09).