Struggling to fetch the date of birth from the database where it has been stored. After searching through multiple resources online, I am still unsure about how to accomplish this task.
export class DetailsEmployeeComponent implements OnInit{
employeeDetail: Employee ={
id: 0,
firstName: '',
dateOfBirth: new Date
};
The use of 'new Date' will provide the current date and time as per timezone.