TASK-7.2 ST2021

AnujGupta
3 min readJun 25, 2021

TEAM_NAME = Brainless_Genius

What is JavaScript?

JavaScript is a very powerful client-side scripting language. JavaScript is used mainly for enhancing the interaction of a user with the webpage. In other words, you can make your webpage more lively and interactive, with the help of JavaScript. JavaScript is also being used widely in game development and Mobile application development

Why does the web need JavaScript?

JavaScript also is compatible with other languages. This is super important as web servers run on different languages, whether PHP, Python, Ruby, Java, or. NET. Because the JavaScript running in the browser is 100% decoupled from how HTML web pages are generated, users will always have the same rich experience as JS works, no matter the server-side language used

  • Autocomplete
  • Loading new content or data onto the page without reloading the page
  • Rollover effects and dropdown menus
  • Animating page elements such as fading, resizing, or relocating
  • Playing audio and video
  • Validating input from forms

JavaScript Applications

Single Page Applications(SPAs)

It is sometimes referred to as Single Page Interface (SPI). This is the most common form of JavaScript application available these days. These are a lot more responsive and resemble a desktop application. Unlike other web applications, these load the complete webpage with HTML, CSS, and JavaScript initially. Though the initial loading of the webpage takes time, it works faster with other user requests. The only disadvantage these applications have is that they rely heavily on JavaScript and thus reduce browsing speed in low-power devices. Some examples of SPAs are Gmail, Facebook, Twitter, etc.

2. Multi-page Applications

These applications work in a “traditional” way. This means that every change in the web application requests a new page from the server. They are larger than SPAs and take more time than necessary. We have to transfer a lot of data between the server and the browser which reduces the application’s speed. Even though it is much easier these days to do that with the help of AJAX (Asynchronous JavaScript), it isn’t very popular. AJAX allows us to refresh only certain sections of the applications without reloading the complete application. But using these applications adds complexity for the programmer and these are difficult to develop as compared to the SPAs.

3. Isomorphic (Universal) Applications

JavaScript applications became ‘Isomorphic’ with the release of NodeJS i.e. they can execute on both client-side and server-side. These applications are very useful when you need faster interaction with the web pages. The same code must be compatible to execute on both the client-side and server-side to render the application components. Unlike SPAs, these applications support older devices and work even with poor internet connections. These applications have a lesser code, but this also makes them difficult to debug.

--

--