only time from date in js code example

Example 1: currentTime(); javascript

var d = new Date("2020-12-09T05:30:51.01");
d.getHours(); // => 05
d.getMinutes(); // =>  30
d.getSeconds(); // => 51

/*2020 stand for year
12 stands for moth
and 09 stands for the date.
the T there seperates the date and time
!!!IMPORTANT THE VALUE IS A STRING!!!*/

Example 2: get current time in js

<script>

var today = new Date();

var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();

</script>