console.log(element); // logs the expandable <html>…</html>
console.dir(element); // logs the element’s properties and values
var el = document.getElementById("myId");
console.log(el); // logs the html of element <div>…</div>
console.dir(el); // logs the element’s properties and values