Love beautiful code? We do too.
Phương thức Date toUTCString trong JavaScript biến đổi một ngày thành một chuỗi, sử dụng qui ước Universal time.
Cú pháp của nó như sau:
Date.toTimeString ()
Trả về giá trị
<html>
<head>
<title>JavaScript toUTCString Method</title>
</head>
<body>
<script type="text/javascript">
var dateobject = new Date(1993, 6, 28, 14, 39, 7);
document.write( dateobject.toUTCString() );
</script>
</body>
</html>
Kết quả
Wed, 28 Jul 1993 09:09:07 GMT
Xem thêm
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời