Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2025 02:24 AM
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2025 02:41 AM
example script:
var dateStr = "/Date(1682726400000)/";
var intDate = dateStr.substring(dateStr.indexOf("(")+1, dateStr.indexOf(")"));
var gdtTesting = new GlideDateTime();
gdtTesting.setNumericValue(intDate);
gs.log(gdtTesting);
If I could help you with your Query then, please hit the Thumb Icon and mark my answer as Correct!!
Thank you,
Ali
Thank you,
Ali
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2025 02:56 AM
Super its working , Thanks a Lot Bro.