[Solved] What is console.log in the render method of a react component showing?
“this” actually references the Javascript element depending on the context of it’s use. console.log(this). In my side, I am getting entire object. props: {history: {…}, location: {…}, match: {…}, staticContext: undefined, data: {…}, …} refs: {} state: null React automatically handles virtual dom manipulation. It implements something like Diffing Algorithm where it reconciles the dom … Read more