I have this on my .js file:
let Odiv=document.getElementById("div0");
console.log(Odiv);
And the output is
<div id="div0">"something"</div>
When I'm expecting it to show the DOM element properties. I'm using Chrome. What's happening?
let Odiv = document.getElementById("div0");
console.log(Odiv);
<div id="div0">"something"</div>