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