In console.log I have an HTML object like this...
If I wanted to make a javascript to access and display the value of "name" from the HTML object (not by another method) like so...
<script type="text/javascript">
var getName = how to get it?
console.log(getName);
</script>
... how would I do it?
What if "name" was nested in something like "attributes: NamedNodeMap"? How would I get a nested value?