From 0c6623db745b00d5b26a737657df539f1d8c1a92 Mon Sep 17 00:00:00 2001 From: sneeed <55649412+sneeed@users.noreply.github.com> Date: Thu, 9 May 2024 15:40:50 +0200 Subject: [PATCH 1/2] fix link to ECMA-262 specification --- 1-js/01-getting-started/2-manuals-specifications/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/01-getting-started/2-manuals-specifications/article.md b/1-js/01-getting-started/2-manuals-specifications/article.md index 3fa2433363..d05cfe6358 100644 --- a/1-js/01-getting-started/2-manuals-specifications/article.md +++ b/1-js/01-getting-started/2-manuals-specifications/article.md @@ -5,7 +5,7 @@ This book is a *tutorial*. It aims to help you gradually learn the language. But ## Specification -[The ECMA-262 specification](https://www.ecma-international.org/publications/standards/Ecma-262.htm) contains the most in-depth, detailed and formalized information about JavaScript. It defines the language. +[The ECMA-262 specification](https://262.ecma-international.org/5.1/) contains the most in-depth, detailed and formalized information about JavaScript. It defines the language. But being that formalized, it's difficult to understand at first. So if you need the most trustworthy source of information about the language details, the specification is the right place. But it's not for everyday use. From 0587053407974a5498c4431e38336ad23f5b2ca7 Mon Sep 17 00:00:00 2001 From: sneeed <55649412+sneeed@users.noreply.github.com> Date: Tue, 18 Jun 2024 20:03:49 +0200 Subject: [PATCH 2/2] change link to ecma262 page --- 1-js/01-getting-started/2-manuals-specifications/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/01-getting-started/2-manuals-specifications/article.md b/1-js/01-getting-started/2-manuals-specifications/article.md index d05cfe6358..752d7c155a 100644 --- a/1-js/01-getting-started/2-manuals-specifications/article.md +++ b/1-js/01-getting-started/2-manuals-specifications/article.md @@ -5,7 +5,7 @@ This book is a *tutorial*. It aims to help you gradually learn the language. But ## Specification -[The ECMA-262 specification](https://262.ecma-international.org/5.1/) contains the most in-depth, detailed and formalized information about JavaScript. It defines the language. +[The ECMA-262 specification](https://tc39.es/ecma262/) contains the most in-depth, detailed and formalized information about JavaScript. It defines the language. But being that formalized, it's difficult to understand at first. So if you need the most trustworthy source of information about the language details, the specification is the right place. But it's not for everyday use.