From fe7e84b260868fa95470ea157827b6f7545ba2f4 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 14 Jun 2021 00:52:35 +0300 Subject: [PATCH] minor fixes --- 1-js/01-getting-started/01-hello-javascript/article.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/1-js/01-getting-started/01-hello-javascript/article.md b/1-js/01-getting-started/01-hello-javascript/article.md index 54e0c12e..e3cfb904 100644 --- a/1-js/01-getting-started/01-hello-javascript/article.md +++ b/1-js/01-getting-started/01-hello-javascript/article.md @@ -12,8 +12,12 @@ Technically, even a coffee machine can include its own JavaScript engine to allo ![](javascript-engine.svg) +```smart header="Where to read?" There's a formal language description called [ECMAScript Language Specification](https://tc39.es/ecma262/), it describes how a JavaScript engine works. Sometimes we'll give references to it, but, though technically correct, it's hard to read for humans. +Also, there's a good JavaScript reference at [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference). One can type `mdn ` in an internet search engine to find the information about that term there. +``` + Programs in JavaScript are called "scripts". **In this tutorial we concentrate on the "core" JavaScript, that works mostly everywhere.**