Skip to content

Commit 08aecf8

Browse files
committed
fix
1 parent 4af31d7 commit 08aecf8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

1-js/1-getting-started/2-es-modern-now/article.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11

2-
# Embrace the future!
2+
# The evolution is in progress
33

44
The JavaScript language steadily evolves. The new proposals get analyzed and, if they look worthy, are appended to the list at <https://tc39.github.io/ecma262/> and then progress to the [specification](http://www.ecma-international.org/publications/standards/Ecma-262.htm).
55

6-
It's quite common for an engine to implement only the part of the standard. Each engine has its own idea about what to implement first. It may implement proposals that are not approved yet and fail to implement things that are already in the spec, because they are less interesting or just harder to do.
6+
Each engine has its own idea about what to implement first. It may implement proposals that are not approved yet and fail to implement things that are already in the spec, because they are less interesting or just harder to do.
77

8-
A good page to see the current state of support for language features is <https://kangax.github.io/compat-table/es6/> (remember the link to use in the future when you know the language).
8+
So it's quite common for an engine to implement only the part of the standard.
99

10-
We are going to learn the most up-to-date JavaScript.
10+
A good page to see the current state of support for language features is <https://kangax.github.io/compat-table/es6/> (remember the link to use in the future when you know the language).
1111

1212
## Babel.JS
1313

14-
...But when we use all the modern features of the language, some engines may fail to support such code.
14+
When we use all the modern features of the language, some engines may fail to support such code. Just as it was said, not all features are implemented everywhere.
1515

16-
Here comes Babel.JS.
16+
Here Babel.JS comes to the rescue.
1717

1818
[Babel.JS](https://babeljs.io) is a [transpiler](https://en.wikipedia.org/wiki/Source-to-source_compiler). It rewrites the modern JavaScript code into the previous standard.
1919

0 commit comments

Comments
 (0)