Hello @kartik,
To get time and date you should use
new Date().toLocaleString();
>> "18/09/2020, 2:35:56 AM"
To get only the date you should use
new Date().toLocaleDateString();
>> "18/09/2020"
To get only the time you should use
new Date().toLocaleTimeString();
>> "2:35:56 AM"
Hope IT HELPS!!
Thank You!!