1var d = new Date("2020-12-09T05:30:51.01");
2d.getHours(); // => 05
3d.getMinutes(); // => 30
4d.getSeconds(); // => 51
5
6/*2020 stand for year
712 stands for moth
8and 09 stands for the date.
9the T there seperates the date and time
10!!!IMPORTANT THE VALUE IS A STRING!!!*/