[PR] Fix typos in 01-getting-started
This commit is contained in:
parent
5451310c26
commit
b82fa6f4e8
1 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue