sorry I just learned the app script and my english is not good. on the Google app script, based on the example of json array, how do I get itemA and itemC output?
{
"items":[
{
"itemA":123,
"itemB":"qwe",
"itemC":"asd"
},
{
"itemA":456,
"itemB":"rty",
"itemC":"fgh"
},
{
"itemA":789,
"itemB":"uio",
"itemC":"jkl"
}
]
}
I want the output like this :
123, asd
456, fgh
789, jkl
I really appreciate all your help.