Access Array Data

0

I have an Array that has the following items:

[[362, SCAB171570FEC]]

To display this I use the following expression:

return $data.listaItensPedido.value;

But I need to, for example, access only 362 , I tried this expression:

return $data.listaItensPedido.value[0];

And so nothing returned to me. Is it possible to access each item in this array?

    
asked by anonymous 17.08.2017 / 15:38

0 answers