I’m currently learning how Critical Rendering Path works in web development. Based on what I’ve read javascript resource should be requested and executed synchronously if there is no ‘async’ or ‘defer’ keyword. Yet for me it looks like those scripts are loaded asynchronously:
This is how my HTML looks:
I load scripts without ‘async’ or ‘defer’ keyword so I expect them to be fetched and executed synchronously (one after another) yet they are fetched and executed asynchronously, I would like to understand why.