From dfc481437c4da9cc80b649916a2118e68ad6580b Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 16 Oct 2018 00:44:50 -0400 Subject: [PATCH] Added "Frameworks" & links to useful info (#19396) - Added hyperlinks to official websites of frameworks in "Versatility" advantage - Added "Frameworks" advantage and links to useful information --- .../advantages-and-disadvantages-of-javascript/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/pages/guide/english/javascript/advantages-and-disadvantages-of-javascript/index.md b/client/src/pages/guide/english/javascript/advantages-and-disadvantages-of-javascript/index.md index b2bd2e9fe1..89be9545b6 100644 --- a/client/src/pages/guide/english/javascript/advantages-and-disadvantages-of-javascript/index.md +++ b/client/src/pages/guide/english/javascript/advantages-and-disadvantages-of-javascript/index.md @@ -13,7 +13,8 @@ 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. -* **Versatility**. Nowadays, there are many ways to use JavaScript through Node.js servers. If you were to bootstrap node.js with Express, use a document database like mongodb, 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. +* **Frameworks**. If there is anything JavaScript could thank for its wild success, its frameworks. With the rise in demand of the popular MEAN Stack, 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, are giving JavaScript developers the ability to create their own hybrid mobile applications. With just one language, developers can, and will, go far with JavaScript. +* **Versatility**. Nowadays, there are many ways to use JavaScript through Node.js servers. If you were to bootstrap node.js with Express, use a document database like MongoDB, 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