you can use this to convert the date format
var date = "get your date from server"
var convert = sap.ui.core.format.DateFormat.getDateInstance({pattern:"MM/dd/yyyy"});
var req_format = convert.format(date)
//In the variable req_format you date will be stored.