Love beautiful code? We do too.
Phương thức date getUTCMinutes() trong Javascript trả về phút của ngày đã cho theo Universal time. Giá trị được trả về bởi getUTCMinutes() là một số integer giữa 0 và 59.
Cú pháp của nó như sau:
Date.getUTCMinutes()
Trả về giá trị
<html>
<head>
<title>JavaScript getUTCMinutes Method</title>
</head>
<body>
<script type="text/javascript">
var dt = new Date();
document.write("getUTCMinutes() : " + dt.getUTCMinutes() );
</script>
</body>
</html>
Kết quả
getUTCMinutes() : 46
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời