Skip to content

Commit b8e1656

Browse files
committed
i18n
1 parent 75f8bd0 commit b8e1656

File tree

44 files changed

+190
-193
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+190
-193
lines changed

questions/explain-how-jsonp-works-and-how-its-not-really-ajax/en-US.langnostic.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
2-
"frontmatter": {
3-
"title": "c1693c5a"
4-
},
52
"content": {
63
"source": {
7-
"locale": "en-US",
84
"hashes": [
95
"77da26a5",
106
"4c1c525c",
@@ -23,8 +19,9 @@
2319
"f9fa7113",
2420
"4f06bc53",
2521
"1f4770e5",
26-
"8b51757d"
27-
]
22+
"d45e7c5b"
23+
],
24+
"locale": "en-US"
2825
},
2926
"targets": {
3027
"zh-CN": [
@@ -45,8 +42,11 @@
4542
"f9fa7113",
4643
"4f06bc53",
4744
"1f4770e5",
48-
"8b51757d"
45+
"d45e7c5b"
4946
]
5047
}
48+
},
49+
"frontmatter": {
50+
"title": "c1693c5a"
5151
}
5252
}

questions/explain-how-jsonp-works-and-how-its-not-really-ajax/zh-CN.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ handleResponse({
6969

7070
## 延伸阅读
7171

72-
* [MDN Web 文档:JSONP](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/JSONP)
73-
* [同源策略](https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy)
74-
* [跨域资源共享 (CORS)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)
72+
* [W3Schools: JSONP](https://www.w3schools.com/js/js_json_jsonp.asp)
73+
* [Same-origin policy](https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy)
74+
* [Cross-Origin Resource Sharing (CORS)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)

questions/explain-the-concept-of-destructuring-assignment-for-objects-and-arrays/en-US.langnostic.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
2-
"frontmatter": {
3-
"title": "faf08055"
4-
},
52
"content": {
63
"source": {
7-
"locale": "en-US",
84
"hashes": [
95
"77da26a5",
106
"4343f7ff",
@@ -36,8 +32,9 @@
3632
"1530bb48",
3733
"21ba8ff5",
3834
"1f4770e5",
39-
"794d2aa7"
40-
]
35+
"7973f9b8"
36+
],
37+
"locale": "en-US"
4138
},
4239
"targets": {
4340
"zh-CN": [
@@ -71,8 +68,11 @@
7168
"1530bb48",
7269
"21ba8ff5",
7370
"1f4770e5",
74-
"794d2aa7"
71+
"7973f9b8"
7572
]
7673
}
74+
},
75+
"frontmatter": {
76+
"title": "faf08055"
7777
}
7878
}

questions/explain-the-concept-of-destructuring-assignment-for-objects-and-arrays/zh-CN.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ console.log(zip); // 10001
117117

118118
* [MDN Web Docs: Destructuring assignment](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment)
119119
* [JavaScript.info: Destructuring assignment](https://javascript.info/destructuring-assignment)
120-
* [FreeCodeCamp: Destructuring assignment](https://www.freecodecamp.org/news/destructuring-assignment-in-es6-30e398f21d10/)
120+
* [FreeCodeCamp: How Destructuring Works in JavaScript](https://www.freecodecamp.org/news/destructuring-in-javascript/)

questions/explain-the-concept-of-hoisting-with-regards-to-functions/en-US.langnostic.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
2-
"frontmatter": {
3-
"title": "13d50de"
4-
},
52
"content": {
63
"source": {
7-
"locale": "en-US",
84
"hashes": [
95
"77da26a5",
106
"20406206",
@@ -22,8 +18,9 @@
2218
"5e9e708",
2319
"ee71a154",
2420
"1f4770e5",
25-
"f4f94c23"
26-
]
21+
"fdf346f1"
22+
],
23+
"locale": "en-US"
2724
},
2825
"targets": {
2926
"zh-CN": [
@@ -43,8 +40,11 @@
4340
"5e9e708",
4441
"ee71a154",
4542
"1f4770e5",
46-
"f4f94c23"
43+
"fdf346f1"
4744
]
4845
}
46+
},
47+
"frontmatter": {
48+
"title": "13d50de"
4949
}
5050
}

questions/explain-the-concept-of-hoisting-with-regards-to-functions/zh-CN.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,5 @@ var arrowFunction = () => {
6565
## 延伸阅读
6666

6767
* [MDN Web Docs on Hoisting](https://developer.mozilla.org/en-US/docs/Glossary/Hoisting)
68-
* [JavaScript.info on Hoisting](https://javascript.info/hoisting)
6968
* [MDN Web Docs on Function Declarations](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function)
7069
* [MDN Web Docs on Function Expressions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/function)

questions/explain-the-concept-of-tagged-templates/en-US.langnostic.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
2-
"frontmatter": {
3-
"title": "644bf6e"
4-
},
52
"content": {
63
"source": {
7-
"locale": "en-US",
84
"hashes": [
95
"77da26a5",
106
"d92293fb",
@@ -28,8 +24,9 @@
2824
"a70e6617",
2925
"e350925c",
3026
"1f4770e5",
31-
"9796ecbe"
32-
]
27+
"5a4eca21"
28+
],
29+
"locale": "en-US"
3330
},
3431
"targets": {
3532
"zh-CN": [
@@ -55,8 +52,11 @@
5552
"a70e6617",
5653
"e350925c",
5754
"1f4770e5",
58-
"9796ecbe"
55+
"5a4eca21"
5956
]
6057
}
58+
},
59+
"frontmatter": {
60+
"title": "644bf6e"
6161
}
6262
}

questions/explain-the-concept-of-tagged-templates/zh-CN.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,4 @@ console.log(result); // "User input: <script>alert("XSS")</sc
9090
## 延伸阅读
9191

9292
* [MDN Web Docs: Template literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#tagged_templates)
93-
* [JavaScript.info: Tagged templates](https://javascript.info/tagged-templates)
9493
* [Exploring JS: Template literals](http://exploringjs.com/es6/ch_template-literals.html#tagged-templates)

questions/explain-the-concept-of-the-spread-operator-and-its-uses/en-US.langnostic.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
2-
"frontmatter": {
3-
"title": "d5d88f1e"
4-
},
52
"content": {
63
"source": {
7-
"locale": "en-US",
84
"hashes": [
95
"77da26a5",
106
"4cddec00",
@@ -27,8 +23,9 @@
2723
"450199cb",
2824
"1858d47f",
2925
"1f4770e5",
30-
"acae51c4"
31-
]
26+
"af185466"
27+
],
28+
"locale": "en-US"
3229
},
3330
"targets": {
3431
"zh-CN": [
@@ -53,8 +50,11 @@
5350
"450199cb",
5451
"1858d47f",
5552
"1f4770e5",
56-
"acae51c4"
53+
"af185466"
5754
]
5855
}
56+
},
57+
"frontmatter": {
58+
"title": "d5d88f1e"
5959
}
6060
}

questions/explain-the-concept-of-the-spread-operator-and-its-uses/zh-CN.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ console.log(sum(...numbers)); // Output: 6
9393

9494
* [MDN Web Docs: Spread syntax](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax)
9595
* [JavaScript.info: Spread operator](https://javascript.info/rest-parameters-spread-operator#spread-operator)
96-
* [FreeCodeCamp: JavaScript spread operator explained](https://www.freecodecamp.org/news/javascript-spread-operator-explained/)
96+
* [FreeCodeCamp: JavaScript Spread and Rest Operators](https://www.freecodecamp.org/news/javascript-spread-and-rest-operators/)

0 commit comments

Comments
 (0)