amitabhaghosh197
2/4/2016 - 5:10 PM

Definations

Definations

What is DOM?

The way each document objects or nodes are manipulated by programming languages is DOM. Dom is the fully object oriented representation of HTML document.

###What is the difference between == and ===?

== is equal value and === is equal value and eaqual type e.g.http://www.w3schools.com/js/js_comparisons.

What is CSS box model?

It is the rectangular boxes that are generated to each elements in the DOM tree, comprises of height, width, padding, margin, border.

Reff: http://thatjsdude.com/interview/

https://github.com/h5bp/Front-end-Developer-Interview-Questions#css-questions

What is the difference between asynchronous and synchronous execution?

When you execute something synchronously, you wait for it to finish before moving on to another task. When you execute something asynchronously, you can move on to another task before it finishes.

link: http://stackoverflow.com/questions/748175/asynchronous-vs-synchronous-execution-what-does-it-really-mean