﻿function convertDateTimeToLongString(date, formatString) {
    var d1 = Date.parse(date).toString(formatString);
    return d1;
}
