Skip to content

Commit 5f540e7

Browse files
committed
minor
1 parent 4d80823 commit 5f540e7

File tree

2 files changed

+2
-2
lines changed
  • 1-js

2 files changed

+2
-2
lines changed

1-js/01-getting-started/2-manuals-specifications/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This book is a *tutorial*. It aims to help you gradually learn the language. But
99

1010
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.
1111

12-
The latest draft is at <https://tc39.es/ecma262/>.
12+
A new specification version is released every year. In-between these releases, the latest specification draft is at <https://tc39.es/ecma262/>.
1313

1414
To read about new bleeding-edge features, including those that are "almost standard" (so-called "stage 3"), see proposals at <https://github.com/tc39/proposals>.
1515

1-js/04-object-basics/06-constructor-new/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ alert(user.name); // Jack
2727
alert(user.isAdmin); // false
2828
```
2929

30-
When a function is executed as `new Func(...)`, it does the following:
30+
When a function is executed with `new`, it does the following steps:
3131

3232
1. A new empty object is created and assigned to `this`.
3333
2. The function body executes. Usually it modifies `this`, adds new properties to it.

0 commit comments

Comments
 (0)