I have read many times that one should place javascripts at the bottom of the body tag to help page load. But while going through the source code of https://shoprex.com/ I saw that they had placed alot of javascripts (both inline and external) AFTER the closing body tag and BEFORE the closing html tag.
</body>
<script>
//some code
//some code
//some code
//some code
//some code
</script>
<script src="example.js">
</script>
</html>
Does this make a difference? Is there any advantage/disadvantage in this or is it just uncommon? Do all browsers respond to this identically or are there compatibality issues?