From fe37a0a9988afa579bfeddac3238aa2f416d7ba4 Mon Sep 17 00:00:00 2001 From: Rachel Irene Lunan Date: Wed, 20 Feb 2019 17:33:18 -0600 Subject: [PATCH] Update index.md (#29850) made some mild proofreading edits to the text --- .../advantages-and-disadvantages-of-javascript/index.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/guide/english/javascript/advantages-and-disadvantages-of-javascript/index.md b/guide/english/javascript/advantages-and-disadvantages-of-javascript/index.md index 5c681e3719..d898ec1d1a 100644 --- a/guide/english/javascript/advantages-and-disadvantages-of-javascript/index.md +++ b/guide/english/javascript/advantages-and-disadvantages-of-javascript/index.md @@ -1,11 +1,11 @@ --- title: Advantages and Disadvantages of JavaScript --- + # Advantages and Disadvantages of JavaScript Like all computer languages, JavaScript has certain advantages and disadvantages. Many of the pros and cons are related to JavaScript executing regularly in a client's browser, but there are other ways to use JavaScript now that allow it to have the same benefits of server-side languages. ## Advantages of JavaScript - * **Speed**. Client-side JavaScript is very fast because it can be run immediately within the client-side browser. Unless outside resources are required, JavaScript is unhindered by network calls to a backend server. It also has no need to be compiled on the client side which gives it certain speed advantages (granted, adding some risk dependent on that quality of the code developed). * **Simplicity**. JavaScript is relatively simple to learn and implement. * **Popularity**. JavaScript is used everywhere in the web. The resources to learn JavaScript are numerous. StackOverflow and GitHub have many projects that are using Javascript and the language as a whole has gained a lot of traction in the industry in recent years especially. @@ -13,12 +13,11 @@ Like all computer languages, JavaScript has certain advantages and disadvantages * **Server Load**. Being client-side reduces the demand on the website server. * **Rich interfaces**. Drag and drop components or slider may give a rich interface to your website. * **Extended Functionality**. Third party add-ons like Greasemonkey enable JavaScript developers to write snippets of JavaScript which can execute on desired web pages to extend its functionality. -* **Frameworks**. If there is anything JavaScript could thank for its wild success, its frameworks. With the rise in demand of the popular [MEAN Stack](https://en.wikipedia.org/wiki/MEAN_(software_bundle)), JavaScript is giving developers a true bang for their buck. In addition to Node and React, both extremely helpful in web development and continually trending, other frameworks such as [React Native](https://facebook.github.io/react-native/), are giving JavaScript developers the ability to create their own hybrid mobile applications. Also, building desktop applications with JavaScript is possible by using the [Electron Framework](https://electronjs.org). With just one language, developers can, and will, go far with JavaScript. +* **Frameworks**. If there is anything JavaScript could thank for its wild success, it is frameworks. With the rise in demand of the popular [MEAN Stack](https://en.wikipedia.org/wiki/MEAN_(software_bundle)), JavaScript is giving developers a true bang for their buck. In addition to Node and React, both extremely helpful in web development and continually trending, other frameworks such as [React Native](https://facebook.github.io/react-native/), are giving JavaScript developers the ability to create their own hybrid mobile applications. Also, building desktop applications with JavaScript is possible by using the [Electron Framework](https://electronjs.org). With just one language, developers can, and will, go far with JavaScript. * **Versatility**. Nowadays, there are many ways to use JavaScript through [Node.js](https://nodejs.org/en/) servers. If you were to bootstrap node.js with Express, use a document database like [MongoDB](https://www.mongodb.com/), and use JavaScript on the front-end for clients, it is possible to develop an entire JavaScript app from front to back using only JavaScript. * **Updates**. Since the advent of EcmaScript 5 (the scripting specification that Javascript relies on), Ecma International has dedicated to updating JavaScript annually. So far, we have received browser support for ES6 in 2017 and look forward to ES7 being supported in future months. ## Disadvantages of JavaScript - * **Client-Side Security**. Because the code executes on the user's computer, in some cases it can be exploited for malicious purposes. This is one reason some people choose to disable Javascript. -* **Browser Support**. JavaScript is sometimes interpreted differently by different browsers. Whereas server-side scripts will always produce the same output, client-side scripts can be a little unpredictable. Don't be overly concerned by this though - as long as you test your script in all the major browsers you should be safe. Also, there are services out there that will allow you to test your code automatically on check in of an update to make sure all browsers support your code. +* **Browser Support**. JavaScript is sometimes interpreted differently by different browsers. Whereas server-side scripts will always produce the same output, client-side scripts can be a little unpredictable. Don't be overly concerned by this though - as long as you test your script in all the major browsers you should be safe. Also, there are services out there that will allow you to test your code automatically on check-in of an update to make sure all browsers support your code. * **Browser Optionality**. Most browsers come with features to disable JavaScript, and your website or application may not work properly if it is disabled.