Hi, i need to concatenate a date value and a time value to make one value representing a datetime in javascript.
thanks, daniel
|
|
Hi, i need to concatenate a date value and a time value to make one value representing a datetime in javascript. thanks, daniel
|
||||||||
|
|
|
Depending on the type of the original date and time value there are some different ways to approach this. A Date object (which has both date and time) may be created in a number of ways.
If the original date and time also is objects of type Date, you may use getHours(), getMinutes(), and so on to extract the desired values. For more information, see Mozilla Developer Center for the Date object. If you provide more detailed information in your question I may edit the answer to be more specific. |
||||||
|
|
|
Assuming "date" is the date string and "time" is the time string:
|
||||
|