User1231829591 posted
Suppose I have multiple pieces of strings taken from various input boxes on a form and I concatenate them together as shown below :
"JAN" + " " + "09" + " " + "2018" + " " + "1:00 PM" + " " + "EST"
Below is the resulting string
JAN 09 2018 1:00 PM EST
I have looked at several javascript functions for converting a string to a date but none seem to be the one I need. Is it possible to convert the string above to a date object in javascript?