toLocaleString / toLocaleDateString / toLocaleTimeString

조수경·2021년 11월 18일
0

HTML

목록 보기
44/96
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
 <script>
  var now = new Date();
  document.write(now + "<br>");
  
  str = now.toLocaleString() + "<br>";
  str += now.toLocaleDateString() + "<br>";
  str += now.toLocaleTimeString() + "<br>";
  
  document.write(str + "<br>");
  
 </script>
 
</head>

<body>

</body>
</html>
profile
신입 개발자 입니다!!!

0개의 댓글

관련 채용 정보