i have a requirement that i'm caling API from flow. From that I'm passing response back to js. That result I'm storing in ja variable.
Now I'm able to get complete result. but while I'm trying to extract particular value from result getting undefined.
Please refer screen shot attached there I'm showing result array in alert.
var result = this.response;
alert("" + result);
var vendor=result["Vendor"];
alert(vendor);
code snippet.
Please help me to achieve this.