Thread Reader
Share this page!
×
Post
Share
Email
Enter URL or ID to Unroll
×
Unroll Thread
You can paste full URL like: https://x.com/threadreaderapp/status/1644127596119195649
or just the ID like: 1644127596119195649
How to get URL link on X (Twitter) App
On the Twitter thread, click on
or
icon on the bottom
Click again on
or
Share Via icon
Click on
Copy Link to Tweet
Paste it above and click "Unroll Thread"!
More info at
Twitter Help
Prateek Gogia 💭
@reeversedev
talks about tech, music, life and rants
Subscribe
Save as PDF
Aug 29, 2019
•
10 tweets
•
3 min read
Got a question in one of the interviews about how does HTML page load, as in, how the resources are actually being fetched from top to bottom and their execution?
Starting a thread about it here.
#FailedInterview
#javascript
#html
Not all resources in the HTML are blocking.
For example, CSS and other static assets are non-blocking.
However, JavaScript is blocking unless it's used with async or defer.