Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
While learning JavaScript, I started to see sometimes the <script> is placed in the <head> and sometimes it is placed in the <body>, What's difference between placing the <scri...
#1: Initial revision
What's the difference between placing <script> in the <head> and placing in the <body>?
While learning JavaScript, I started to see sometimes the `<script>` is placed in the `<head>` and sometimes it is placed in the `<body>`, What's difference between placing the `<script>` in the `<head>` and placing in the `<body>`, and What's the best for more performance and efficiency?