I have an information from Google Sheets like that:
It isn’ an array, but I want create and array from this info (screenshoot), to look like that:
[
{
"value": courses.name(B), // B from table
"sort": Row number // Row number from table
},
{
"value": courses.name(B), // B from table
"sort": Row number // Row number from table
},
{
"value": courses.name(B), // B from table
"sort": Row number // Row number from table
},
]
I will be grateful for any help.