I have two variables here (datetime and time)
And I want to add the time to the datetime variable.
var datetime = '2020/09/21 09:33:00';
var time = '00:00:23';
var result = datetime + time; // I know this is wrong
How can I add the two variables so that the result will be
2020/09/21 09:33:23