Will this code guarantee the objects.js being loaded prior to tests.js? Say I have objects in objects.js which will be used in tests.js. I just wanna make sure in all browsers objects.js loads before tests.js so that I dont get "Undefined function" run time errors, etc.
Or can you suggest a better approach?
<head>
<script src="Scripts/objects.js"></script>
<script src="Scripts/tests.js"></script>
</head>