Skip to main content

Posts

Showing posts with the label json datetime format in javascript jquery

json datetime format in javascript jquery

Hello everyone, I'm going to share the code-sample for  DateTime format in jquery JSON In the 1st step , we get the DateTime using javascript, sample code as  given below.   var createDate = new Date().getTime(); In the 2nd step , we create request body for input-data, sample code as given below. var requestBody = {                                  user: {                                             Id: 9,                                             CreatedDate: '/Date(' + createDate + ')/'                                         }    ...