Love beautiful code? We do too.
Phương thức date toDateString() trong Javascript trả về một chuỗi ngày của đối tượng Date mà con người đọc được.
Cú pháp của nó như sau:
Date.toDateString()
Trả về giá trị
<html>
<head>
<title>JavaScript toDateString Method</title>
</head>
<body>
<script type="text/javascript">
var dt = new Date(1993, 6, 28, 14, 39, 7);
document.write( "Formated Date : " + dt.toDateString() );
</script>
</body>
</html>
Kết quả
Formated Date : Wed Jul 28 1993
Xem thêm
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời