<p>Hello, World!</p>
<script>
  var a = location.href;
  var b = a.substring(a.indexOf("?")+1);
  const c = 'https://www.amazon.com/gp/product/';
  var d = c + b;
  console.log( d );
</script>