thank you for your help it really worked but I have one more problem here
I have data in this format
“all created times”: [
[
{
“type”: “text”,
“text”: {
“content”: “April 28, 2025 5:11 PM”,
“link”: null
},
“annotations”: {
“bold”: false,
“italic”: false,
“strikethrough”: false,
“underline”: false,
“code”: false,
“color”: “default”
},
“plain_text”: “April 28, 2025 5:11 PM”,
“href”: null
}
],
[
{
“type”: “text”,
“text”: {
“content”: “April 28, 2025 12:27 PM”,
“link”: null
},
“annotations”: {
“bold”: false,
“italic”: false,
“strikethrough”: false,
“underline”: false,
“code”: false,
“color”: “default”
},
“plain_text”: “April 28, 2025 12:27 PM”,
“href”: null
}
],
[
{
“type”: “text”,
“text”: {
“content”: “April 28, 2025 12:10 PM”,
“link”: null
},
“annotations”: {
“bold”: false,
“italic”: false,
“strikethrough”: false,
“underline”: false,
“code”: false,
“color”: “default”
},
“plain_text”: “April 28, 2025 12:10 PM”,
“href”: null
}
],
[
i have an array of arrays of objects
as you can see in the format i want variable that is array of plain texts fetched out of array
can you help me with this