Hello, I have a code snippet where I list the entries of an ip address: ```javascript export interfa
Hello, I have a code snippet where I list the entries of an ip address:
Response:
My question is: How can I determine if there are 3 of the same data?
There are 3 of the data 13:43:44 in the code response.
I want to perform an operation when there are 3 of the same data.
How do I detect this with workers
Response:
{
"results": [
{
"time": "13:43:42"
},
{
"time": "13:43:43"
},
{
"time": "13:43:44"
},
{
"time": "13:43:44"
},
{
"time": "13:43:44"
},
{
"time": "13:44:9"
},
{
"time": "13:44:11"
},
{
"time": "13:45:28"
},
{
"time": "13:55:7"
},
{
"time": "13:55:7"
}
],
"success": true,
"meta": {
"duration": 0.6928119957447052,
"last_row_id": 0,
"changes": 0,
"served_by": "SinglePrimary-d8dc9de1-4b0a-4c65-xxxx-38d9a8ee8fda.db3",
"internal_stats": null
}
}My question is: How can I determine if there are 3 of the same data?
There are 3 of the data 13:43:44 in the code response.
I want to perform an operation when there are 3 of the same data.
How do I detect this with workers

