Answers for "what is the date (YYYY/MM/DD)"

-1

python date from yy/mm/dd to yy-mm-dd

lastconnection = datetime.strptime("21/12/2008", "%d/%m/%Y").strftime('%Y-%m-%d')
Posted by: Guest on September-02-2020
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 "what is the date (YYYY/MM/DD)"

Python Answers by Framework

Browse Popular Code Answers by Language