I'm trying to console.log
a variable's value but on the browser console instead of printing the variable (an object in my case), I am getting a Proxy container with format like
Proxy {}[[Handler]]: En[[Target]]: Array(0)[[IsRevoked]]: false
On opening the [[Handler]]
, I get some inner properties which contains an originalTarget
property.
On expanding the originalTarget
, my data is shown.
How do I get this data to show properly in console and also access it in my LWC ?