Front End Programmer Question:
Download Questions PDF

Tell me why do we recommend external CSS or Javascript versus inline?

Front End Developer Interview Question
Front End Developer Interview Question

Answer:

Inline CSS or Javascript has bad impact on site performance.

Your HTML code will weigh more as you use inline scripts, whereas external scripts reduces HTML file size which helps fast rendering of webpage.

HTML code will never be cached so inline scripts. Contrary to that, external dependencies, such as CSS and JavaScript files, will be cached by the visitor's web browser. So it reduces https requests each time user click through web pages.

It is hard to maintain Inline CSS and Javascript code. Where having code in just one centralized location is a lot more preferable than changing exactly the same kind of code snippets spread all over the files in the web site.

Download Front End Developer Interview Questions And Answers PDF

Previous QuestionNext Question
Explain what is Difference between null and undefined?What is a callback function?