0

In the alert(); I want to call the issueId display in the debug mode but I can't manage to do it.

If I put alert(data); I have this : `

[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]

`

But when i write this alert(data.issueId); it doesn't recognize the issueId.

Really need help please.

Screenshot of my code and debug mode

1 Answers1

-1

use for or while loop to access data example

for(var i =0;i<data.length;i++)
{
alert(data[i]);
}
  • it's already in a loop (not shown on the screen) but as I say this don't work. I have 12 time [objet Object] –  Nov 28 '18 at 15:24