From b82fa6f4e84aeb0fde21a8b51fb68681d94b26a8 Mon Sep 17 00:00:00 2001 From: Young Bae Date: Sun, 4 Nov 2018 12:09:24 +0900 Subject: [PATCH] [PR] Fix typos in 01-getting-started --- 1-js/01-getting-started/1-intro/article.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/1-js/01-getting-started/1-intro/article.md b/1-js/01-getting-started/1-intro/article.md index f89b9847..40fc9cac 100644 --- a/1-js/01-getting-started/1-intro/article.md +++ b/1-js/01-getting-started/1-intro/article.md @@ -4,7 +4,7 @@ Let's see what's so special about JavaScript, what we can achieve with it, and w ## What is JavaScript? -*JavaScript* was initially created to *"make webpages alive"*. +*JavaScript* was initially created to *"make web pages alive"*. The programs in this language are called *scripts*. They can be written right in the HTML and executed automatically as the page loads. @@ -85,7 +85,7 @@ There are at least *three* great things about JavaScript: ```compare + Full integration with HTML/CSS. -+ Simple things done simply. ++ Simple things are done simply. + Supported by all major browsers and enabled by default. ``` @@ -104,15 +104,15 @@ That's to be expected, because projects and requirements are different for every So recently a plethora of new languages appeared, which are *transpiled* (converted) to JavaScript before they run in the browser. -Modern tools make the transpilation very fast and transparent, actually allowing developers to code in another language and autoconverting it "under the hood". +Modern tools make the transpilation very fast and transparent, actually allowing developers to code in another language and auto-converting it "under the hood". Examples of such languages: - [CoffeeScript](http://coffeescript.org/) is a "syntactic sugar" for JavaScript, it introduces shorter syntax, allowing to write more precise and clear code. Usually Ruby devs like it. -- [TypeScript](http://www.typescriptlang.org/) is concentrated on adding "strict data typing", to simplify development and support of complex systems. It is developed by Microsoft. +- [TypeScript](http://www.typescriptlang.org/) is concentrated on adding "strict data typing", to simplify the development and support of complex systems. It is developed by Microsoft. - [Dart](https://www.dartlang.org/) is a standalone language that has its own engine that runs in non-browser environments (like mobile apps). It was initially offered by Google as a replacement for JavaScript, but as of now, browsers require it to be transpiled to JavaScript just like the ones above. -There are more. Of course even if we use one of those languages, we should also know JavaScript, to really understand what we're doing. +There are more. Of course, even if we use one of those languages, we should also know JavaScript, to really understand what we're doing. ## Summary