Skip to main content

Hi new javascript learner here, how to solve the proxy issue whenever i log any thing it comes as proxy even though it has some data

 Proxy Data

 

#Javascript Code

2 answers
  1. Aug 18, 2021, 9:50 AM

    Hi, This is an additional layer of security but if you want to log the data for debugging purposes then use JSON.stringify() method

     

    console.log(JSON.stringify(data));

    console.log(JSON.stringify(this.data));

     

    Hope this helps,let me know

0/9000