DEV Community

Discussion on: Feb. 7, 2020: What did you learn this week?

Collapse
 
navdeepsingh profile image
Navdeep Singh

Learnt practical use of async and defer attribute in script tag.

As we know that Javascript files are main hindrance in page rendering path. But with help of async we tell renderer to load this file asynchronously (means dont wait for anything) and defer refers to execute it after DOM loaded.

Yipeee... #performanceMatters