What is the importance of javascript in the web?

JavaScript is important part of any web application, it useful for validating input in a web browser without needing to go to the server. It useful for mainulating HTML DOM, CSS when  user is interacting with a webpage. It is very useful to send asynchronous requests to server without refreshing the page, which is very much useful for chat applications, games and any other application which needes instant feedback without reloading the page.  

AM

Related Javascript Mentoring answers

All answers ▸

Find the sum of all multiples of 2 less than 10000


How to sum every number in an array of numbers.


Suppose that you have a <p> element with an id of 'id1'. Use javascript to set the inner html of this element to 'hello!'


What is the difference between let and var when declaring variables in javascript?