<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <script src="script.js"></script>
  
  </head>

  <body>
  More information <a href="https://www.tutorialfunda.com/js/javascript-variables-basics/">Variable Declaration in Javascript</a>
  </body>

</html>
 let studentName = "Jack",
     studentAddress = "USA";

 console.log(studentName, studentAddress);
/* Styles go here */

For More Explanation see: [Variable Declaration in Javascript](https://www.tutorialfunda.com/js/javascript-variables-basics/)