In Google Apps Script I am getting an array of JSON objects. If I want to access the key value pair of "id: value" could I simple do the following?
var id = myArrayofJson[0].id;
I would use jQuery but it's not allowed in the Google Api.
In Google Apps Script I am getting an array of JSON objects. If I want to access the key value pair of "id: value" could I simple do the following?
I would use jQuery but it's not allowed in the Google Api. |
|||||||||||||
|
what I had was an array of json objects so the answer for my question was:
I just didn't know how to use json arrays properly but got the help from you and others. thank you. |
|||
|