jquery datatable returning current datetime

Solutions on MaxInterview for jquery datatable returning current datetime by the best coders in the world

showing results for - "jquery datatable returning current datetime"
David
27 Aug 2017
1{
2    title: "Date",// name 
3    render: function (data, type, row) {//data
4        return moment(row.updatedDate).format('DD/MM/YYYY hh:mm:ss');
5    }
6}