날짜 개체를 hh:mm:ss 형식의 문자열로 변환하려면 toISOString() 메서드를 사용합니다. ISO 표준, 즉 −
를 사용하여 변환합니다.YYYY-MM-DDTHH:mm:ss.sssZ
예시
다음 코드를 실행하여 날짜 개체를 문자열로 변환할 수 있습니다. −
<html> <head> <title>JavaScript Dates</title> </head> <body> <script> var date, res; date = new Date(); res = date.toISOString(); document.write(res); </script> </body> </html>
출력
2018-05-25T09:55:53.518