From d4e5d5df61e68c2a9427870c3e217b10cbda327b Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 25 Jul 2015 10:44:02 +0300 Subject: [PATCH] up --- 1-js/1-getting-started/1-intro/article.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/1-js/1-getting-started/1-intro/article.md b/1-js/1-getting-started/1-intro/article.md index fe4d7925..c665a866 100644 --- a/1-js/1-getting-started/1-intro/article.md +++ b/1-js/1-getting-started/1-intro/article.md @@ -51,9 +51,11 @@ Modern interpreters actually combine these approaches into one: the script is di The modern JavaScript is a "safe" programming language. It does not provide low-level access to memory or CPU, because it was initially created for browsers which do not require it. -Other capabilities depend on the environment which runs JavaScript. In the browser JavaScript is able to do everything related to webpage manipulation, interaction with the user and the webserver. +Other capabilities depend on the environment which runs JavaScript. For instance, Node.JS has functionality that allows JavaScript to read/write arbitrary files, perform network requests etc etc. -In more details, JavaScript is able to: +In the browser JavaScript can do everything related to webpage manipulation, interaction with the user and the webserver. + +In more details, in-browser JavaScript is able to: