<!DOCTYPE html>
<html>
  <head>
    <title>Parcel Sandbox</title>
    <meta charset="UTF-8" />
  </head>
  <body>
    <script type="module">//module化
      const name = "AAA";
    </script>
    <script type="module">//module化
      const name = "BBB";
      document.body.textContent = name;
    </script>
  </body>
</html>(Visited 26 times, 1 visits today)
		
		
			