DEV Community

Cover image for JAVASCRIPT STRENGTH
RSA Games
RSA Games

Posted on

JAVASCRIPT STRENGTH

Like every programming languages, Javascript also has its own strength and weakness. In my previous blog, I have written about the failures of Javascript and it is true. In this blog, I am going to discuss Javascript advantages.

Javascript is the platform for all the client-side languages. Now it is used in the server-side also with Node.js tools.

Javascript does not make any load to the server since it is running in client-side, it will validate the inputs before it reaches the server and block if it’s not valid input. XMLHttpRequest is a raw browser object to make the Http request from the browser, later it wraps up by JQuery and made the code simple and reliable.

Basic Javascript language is simple and easy to learn. But, to learn Advanced Javascript, we should know some knowledge about the basic Javascript.

Some of the Javascript Advantages are as follows below,

Interoperability
Since Javascript can play nicely with other languages like PHP, Asp.Net, etc.., most of the applications are using Javascript for their client-side validations.

Browser Support
Since Javascript is a base for all the modern tools and frameworks, it does support by all the modern browsers. Some of the extended functions wrap with Javascript functions in other tools or frameworks are having cross-browser compatibility issues.

Javascript Applications
Nowadays, we can use the node.js as server-side and Javascript as client-side to make the Javascript applications. It will be the lightest weighted application compared to the other language applications.

This blog was posted by RSA Games and you can refer the original post here at http://rsagames.com

Top comments (0)