The target property of the HTMLAnchorElement interface is a string that indicates where to display the linked resource.
It reflects the target attribute of the <a> element.
A string representing the target. Its value can be:
<frame>._blank, _self, _parent, or _top.<a href="www.example1.com" class="link1" target="_blank">example1</a>const link = document.querySelector(".link1");
console.log(link.target); // output: "_blank"HTMLBaseElement.target propertyHTMLFormElement.target propertyHTMLAreaElement.target property