Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript 날짜 개체를 문자열로 변환하는 방법은 무엇입니까?


자바스크립트 날짜 개체를 문자열로 변환하려면 toString() 메서드를 사용합니다. 이 메소드는 지정된 Date 객체를 나타내는 문자열을 반환합니다.

예시

다음 코드를 실행하여 날짜 개체를 문자열로 변환할 수 있습니다. −

<html>
   <head>
      <title>JavaScript toString() Method</title>
   </head>
   <body>
      <script>
         var dateobject = new Date(2017, 9, 24, 14, 39, 7);
         stringobj = dateobject.toString();
         document.write( "String Object : " + stringobj );
      </script>
   </body>
</html>