Skip to content

Commit 4f2a908

Browse files
committed
fixes
1 parent 69fbb63 commit 4f2a908

File tree

4 files changed

+33
-26
lines changed

4 files changed

+33
-26
lines changed

5-network/05-fetch-api/article.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11

22
# Fetch API
33

4-
So far, we know quite a bit about fetch.
4+
So far, we know quite a bit about `fetch`.
55

66
Now let's see the rest of API, to cover all its abilities.
77

8-
Here's the full list of all possible fetch options with their default values (alternatives in comments):
8+
Here's the full list of all possible `fetch` options with their default values (alternatives in comments):
99

1010
```js
1111
let promise = fetch(url, {
1212
method: "GET", // POST, PUT, DELETE, etc.
1313
headers: {
14-
"Content-Type": "text/plain;charset=UTF-8" // for a string body, depends on body
14+
// the content type header value is usually auto-set depending on the request body
15+
"Content-Type": "text/plain;charset=UTF-8"
1516
},
1617
body: undefined // string, FormData, Blob, BufferSource, or URLSearchParams
17-
referrer: "about:client", // "" for no-referrer, or an url from the current origin
18+
referrer: "about:client", // or "" to send no Referer header, or an url from the current origin
1819
referrerPolicy: "no-referrer-when-downgrade", // no-referrer, origin, same-origin...
1920
mode: "cors", // same-origin, no-cors
2021
credentials: "same-origin", // omit, include
@@ -39,8 +40,7 @@ Now let's explore the rest of options.
3940

4041
These options govern how `fetch` sets HTTP `Referer` header.
4142

42-
That header contains the url of the page that made the request. In most scenarios, it plays a very minor informational role, but sometimes, for security purposes, it makes sense to remove or modify it.
43-
.
43+
That header contains the url of the page that made the request. In most scenarios, it plays a very minor informational role, but sometimes, for security purposes, it makes sense to remove or shorten it.
4444

4545
**The `referrer` option allows to set any `Referer` within the current origin) or disable it.**
4646

@@ -72,13 +72,13 @@ Possible values are described in the [Referrer Policy specification](https://w3c
7272
- **`"no-referrer-when-downgrade"`** -- default value: `Referer` is sent always, unless we send a request from HTTPS to HTTP (to less secure protocol).
7373
- **`"no-referrer"`** -- never send `Referer`.
7474
- **`"origin"`** -- only send the origin in `Referer`, not the full page URL, e.g. `http://site.com` instead of `http://site.com/path`.
75-
- **`"origin-when-cross-origin"`** -- send full referrer to the same origin, but only the origin part for cross-origin requests.
76-
- **`"same-origin"`** -- send full referrer to the same origin, but no referer for for cross-origin requests.
77-
- **`"strict-origin"`** -- send only origin, don't send referrer for HTTPS→HTTP requests.
78-
- **`"strict-origin-when-cross-origin"`** -- for same-origin send full referrer, for cross-origin send only origin, unless it's HTTPS→HTTP request, then send nothing.
75+
- **`"origin-when-cross-origin"`** -- send full `Referer` to the same origin, but only the origin part for cross-origin requests.
76+
- **`"same-origin"`** -- send full `Referer` to the same origin, but no referer for for cross-origin requests.
77+
- **`"strict-origin"`** -- send only origin, don't send `Referer` for HTTPS→HTTP requests.
78+
- **`"strict-origin-when-cross-origin"`** -- for same-origin send full `Referer`, for cross-origin send only origin, unless it's HTTPS→HTTP request, then send nothing.
7979
- **`"unsafe-url"`** -- always send full url in `Referer`.
8080

81-
Let's say we have an admin zone with URL structure that shouldn't be visible from outside.
81+
Let's say we have an admin zone with URL structure that shouldn't be known from outside of the site.
8282

8383
If we send a cross-origin `fetch`, then by default it sends the `Referer` header with the full url of our page (except when we request from HTTPS to HTTP, then no `Referer`).
8484

@@ -92,7 +92,7 @@ fetch('https://another.com/page', {
9292
});
9393
```
9494

95-
Otherwise, if we'd like the remote side to see where the request comes from, we can send only the "origin" part of the url:
95+
Otherwise, if we'd like the remote side to see only the domain where the request comes from, but not the full URL, we can send only the "origin" part of it:
9696

9797
```js
9898
fetch('https://another.com/page', {

9-regular-expressions/09-regexp-groups/3-find-decimal-positive-numbers/solution.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

2-
An non-negative integer number is `pattern:\d+`. We should exclude `0` as the first digit, as we don't need zero, but we can allow it in further digits.
2+
An non-negative integer number is `pattern:\d+`. A zero `0` can't be the first digit, but we should allow it in further digits.
33

44
So that gives us `pattern:[1-9]\d*`.
55

66
A decimal part is: `pattern:\.\d+`.
77

8-
Because the decimal part is optional, let's put it in parentheses with the quantifier `pattern:'?'`.
8+
Because the decimal part is optional, let's put it in parentheses with the quantifier `pattern:?`.
99

1010
Finally we have the regexp: `pattern:[1-9]\d*(\.\d+)?`:
1111

9-regular-expressions/09-regexp-groups/5-parse-expression/solution.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
A regexp for a number is: `pattern:-?\d+(\.\d+)?`. We created it in previous tasks.
22

3-
An operator is `pattern:[-+*/]`. We put the dash `pattern:-` first, because in the middle it would mean a character range, we don't need that.
3+
An operator is `pattern:[-+*/]`.
44

5-
Note that a slash should be escaped inside a JavaScript regexp `pattern:/.../`.
5+
Please note:
6+
- Here the dash `pattern:-` goes first in the brackets, because in the middle it would mean a character range, while we just want a character `-`.
7+
- A slash `/` should be escaped inside a JavaScript regexp `pattern:/.../`, we'll do that later.
68

79
We need a number, an operator, and then another number. And optional spaces between them.
810

9-regular-expressions/09-regexp-groups/article.md

+15-10
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ In this example parentheses were used to make a group for repeating `pattern:(..
4747

4848
## Contents of parentheses
4949

50-
Parentheses are numbered from left to right. The search engine remembers the content of each and allows to reference it in the pattern or in the replacement string.
50+
Parentheses are numbered from left to right. The search engine remembers the content matched by each of them and allows to reference it in the pattern or in the replacement string.
5151

5252
For instance, we'd like to find HTML tags `pattern:<.*?>`, and process them.
5353

5454
Let's wrap the inner content into parentheses, like this: `pattern:<(.*?)>`.
5555

56-
We'll get them into an array:
56+
We'll get both the tag as a whole and its content as an array:
5757

5858
```js run
5959
let str = '<h1>Hello, world!</h1>';
@@ -62,7 +62,7 @@ let reg = /<(.*?)>/;
6262
alert( str.match(reg) ); // Array: ["<h1>", "h1"]
6363
```
6464

65-
The call to [String#match](mdn:js/String/match) returns groups only if the regexp has no `pattern:/.../g` flag.
65+
The call to [String#match](mdn:js/String/match) returns groups only if the regexp only looks for the first match, that is: has no `pattern:/.../g` flag.
6666

6767
If we need all matches with their groups then we can use `.matchAll` or `regexp.exec` as described in <info:regexp-methods>:
6868

@@ -162,9 +162,9 @@ alert(groups.day); // 30
162162

163163
As you can see, the groups reside in the `.groups` property of the match.
164164

165-
We can also use them in replacements, as `pattern:$<name>` (like `$1..9`, but name instead of a digit).
165+
We can also use them in the replacement string, as `pattern:$<name>` (like `$1..9`, but a name instead of a digit).
166166

167-
For instance, let's rearrange the date into `day.month.year`:
167+
For instance, let's reformat the date into `day.month.year`:
168168

169169
```js run
170170
let dateRegexp = /(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/;
@@ -176,7 +176,7 @@ let rearranged = str.replace(dateRegexp, '$<day>.$<month>.$<year>');
176176
alert(rearranged); // 30.04.2019
177177
```
178178

179-
If we use a function, then named `groups` object is always the last argument:
179+
If we use a function for the replacement, then named `groups` object is always the last argument:
180180

181181
```js run
182182
let dateRegexp = /(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/;
@@ -231,7 +231,12 @@ alert( result[1] ); // John
231231

232232
## Summary
233233

234-
- Parentheses can be:
235-
- capturing `(...)`, ordered left-to-right, accessible by number.
236-
- named capturing `(?<name>...)`, accessible by name.
237-
- non-capturing `(?:...)`, used only to apply quantifier to the whole groups.
234+
Parentheses group together a part of the regular expression, so that the quantifier applies to it as a whole.
235+
236+
Parentheses groups are numbered left-to-right, and can optionally be named with `(?<name>...)`.
237+
238+
The content, matched by a group, can be referenced both in the replacement string as `$1`, `$2` etc, or by the name `$name` if named.
239+
240+
So, parentheses groups are called "capturing groups", as they "capture" a part of the match. We get that part separately from the result.
241+
242+
We can exclude the group from remembering (make in "non-capturing") by putting `?:` at the start: `(?:...)`, that's used if we'd like to apply a quantifier to the whole group, but don't need it in the result.

0 commit comments

Comments
 (0)