To create a link, use the JavaScript link() method. This method creates an HTML hypertext link that requests another URL. The following is the syntax:
string.link( hrefname )
Above, hrefname is any string that specifies the HREF of the <a> tag; it should be a valid URL.
Example
You can try to run the following code to learn how to work with link() method in JavaScript −
<html>
<head>
<title>JavaScript String link() Method</title>
</head>
<body>
<script>
var str = new String("Simply Easy Learning");
var URL = "https://www.tutorialspoint.com";
document.write(str.link( URL ));
</script>
</body>
</html>