@@ -7,7 +7,7 @@ For example, this HTML-page shows the "Hello" message:
77``` html run
88<!doctype html>
99<script >
10- alert (" Hello!" );
10+ alert (" Hello, world !" );
1111 </script >
1212```
1313
@@ -19,15 +19,16 @@ We can also run scripts using [Node.js](https://nodejs.org), it's commonly used
1919
2020Depending on the environment, JavaScript may provide platform-specific functionality.
2121
22- - In a web browser, JavaScript can manipulate the web-page, send network requests, show messages and so on.
23- - Node.js allows to run a web-server.
22+ - In a web browser, JavaScript can manipulate the web-page, send network requests, show messages and so on.
23+ - In node.js we can use JavaScript to run a web-server, read and write arbitrary files.
24+ - ...And so on.
2425
25- ...And so on. Even a coffee machine may include its own JavaScript engine, that could allow us to program its recipes.
26+ Technically, even a coffee machine can include its own JavaScript engine, to allow programming of coffee recipes.
2627
2728![ ] ( javascript-engine.svg )
2829
29- In this tutorial we concentrate on the "core JavaScript", that's the same everywhere.**
30+ ** In this tutorial we concentrate on the "core JavaScript", that's the same everywhere.**
3031
31- After you learn it , you can go in any direction: learn browser functionality, how to write servers and so on.
32+ We'll try to keep browser-specific notes at minimum. After you learn the core , you can go in any direction: browsers, frameworks, servers and so on.
3233
33- Please turn the page to start learning JavaScript!
34+ Turn the page to start learning JavaScript!
0 commit comments