I making an asp project and the date is displayed as yyyy/mm/dd but when the user press on the edit button for the form i need to replace the date format with dd/mm/yyyy
function convertDigitIn(str){ return str.split('/').reverse().join('/'); }