In my data collection, there are multiple objects each containing a specific date and time value:
[
{dt: "2019-11-29 12:00:00"},
{dt: "2019-11-29 3:00:00"},
{dt: "2019-11-29 6:00:00"},
{dt: "2019-11-30 12:00:00"},
{dt: "2019-11-30 6:00:00"}
]
My goal is to extract and display only the dates with the time set to 12:00:00
.