The msg.datetime is a string and I am trying to get rid of the last 5 char.
I just want the Date and Time. I want to get rid of what the green arrow is pointing to.
Thanks for any help
Thanks for any help
Try
value: msg.dateTime.slice(0,-5)
if the timestamp is a string. String.prototype.slice() - JavaScript | MDN
You could also use substring() or substr()
Otherwise you will need to convert the time object to a string using toISOString() Date - JavaScript | MDN
Worked very well. Thank You.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.