[PR] Fix typos in 01-getting-started

This commit is contained in:
Young Bae 2018-11-04 12:09:24 +09:00 committed by GitHub
parent 5451310c26
commit b82fa6f4e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -85,7 +85,7 @@ There are at least *three* great things about JavaScript:
```compare ```compare
+ Full integration with HTML/CSS. + Full integration with HTML/CSS.
+ Simple things done simply. + Simple things are done simply.
+ Supported by all major browsers and enabled by default. + 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. 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: 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. - [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. - [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 ## Summary