I am trying to access property values from an array of objects. I can access PurchaseOrder and DocumentCurrency property but not able to access NetPriceAmount
NetPriceAmount property is part of to_PurchaseOrderItem object.
Here is the link to js fiddle which has complete JSON result https://jsfiddle.net/d3b9cLas/
This is a layout of JSON result;
This is what have tried so far and I am not able to read NetPriceAmount value.
pos.forEach(({
PurchaseOrder: PurchaseOrder,
DocumentCurrency: Currency,
NetPriceAmount: NetPriceAmount
}) => {
console.log(NetPriceAmount)
});