Answers for "how to convert date and time in to yy-mm-dd h:m:s"

VBA
0

Convert a date to yyyy mm dd format

const formatYmd = date => date.toISOString().slice(0, 10);
formatYmd(new Date());
Posted by: Guest on October-21-2020

Code answers related to "how to convert date and time in to yy-mm-dd h:m:s"

Code answers related to "VBA"

Browse Popular Code Answers by Language