Skip to content

Commit 68dfc78

Browse files
Sort merge conflicts
2 parents dbbd8fe + 1ddd955 commit 68dfc78

418 files changed

Lines changed: 2095 additions & 798 deletions

File tree

Some content is hidden

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

files/en-us/_redirects.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15528,9 +15528,14 @@
1552815528
/en-US/docs/Web/JavaScript/Reference/Symbols /en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol
1552915529
/en-US/docs/Web/JavaScript/Reference/arrow_functions /en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions
1553015530
/en-US/docs/Web/JavaScript/Reference/default_parameters /en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters
15531+
/en-US/docs/Web/JavaScript/Reference/delete /en-US/docs/Web/JavaScript/Reference/Operators/delete
1553115532
/en-US/docs/Web/JavaScript/Reference/eval /en-US/docs/Web/JavaScript/Reference/Global_Objects/eval
15533+
/en-US/docs/Web/JavaScript/Reference/instanceof /en-US/docs/Web/JavaScript/Reference/Operators/instanceof
15534+
/en-US/docs/Web/JavaScript/Reference/new /en-US/docs/Web/JavaScript/Reference/Operators/new
15535+
/en-US/docs/Web/JavaScript/Reference/null /en-US/docs/Web/JavaScript/Reference/Operators/null
1553215536
/en-US/docs/Web/JavaScript/Reference/rest_parameters /en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters
1553315537
/en-US/docs/Web/JavaScript/Reference/template_strings /en-US/docs/Web/JavaScript/Reference/Template_literals
15538+
/en-US/docs/Web/JavaScript/Reference/this /en-US/docs/Web/JavaScript/Reference/Operators/this
1553415539
/en-US/docs/Web/JavaScript/Same_origin_policy_for_JavaScript /en-US/docs/Web/Security/Defenses/Same-origin_policy
1553515540
/en-US/docs/Web/JavaScript/Shells /en-US/docs/Web/JavaScript/Reference/JavaScript_technologies_overview
1553615541
/en-US/docs/Web/JavaScript/The_performance_hazards_of__[[Prototype]]_mutation /en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf
@@ -16869,6 +16874,7 @@
1686916874
/en-US/docs/WebAssembly/JavaScript_interface/validate /en-US/docs/WebAssembly/Reference/JavaScript_interface/validate_static
1687016875
/en-US/docs/WebAssembly/JavaScript_interface/validate_static /en-US/docs/WebAssembly/Reference/JavaScript_interface/validate_static
1687116876
/en-US/docs/WebAssembly/Loading_and_running /en-US/docs/WebAssembly/Guides/Loading_and_running
16877+
/en-US/docs/WebAssembly/Reference/Definitions/func /en-US/docs/WebAssembly/Reference/Definitions/types/func
1687216878
/en-US/docs/WebAssembly/Reference/Numeric/Absolute /en-US/docs/WebAssembly/Reference/Numeric/abs
1687316879
/en-US/docs/WebAssembly/Reference/Numeric/Addition /en-US/docs/WebAssembly/Reference/Numeric/add
1687416880
/en-US/docs/WebAssembly/Reference/Numeric/Copy_sign /en-US/docs/WebAssembly/Reference/Numeric/copysign
@@ -16921,6 +16927,15 @@
1692116927
/en-US/docs/WebAssembly/Reference/SIMD/load/load8_splat /en-US/docs/WebAssembly/Reference/SIMD/load_store/load8_splat
1692216928
/en-US/docs/WebAssembly/Reference/SIMD/load/load8x8_s /en-US/docs/WebAssembly/Reference/SIMD/load_store/load8x8_s
1692316929
/en-US/docs/WebAssembly/Reference/SIMD/load/load8x8_u /en-US/docs/WebAssembly/Reference/SIMD/load_store/load8x8_u
16930+
/en-US/docs/WebAssembly/Reference/Types /en-US/docs/WebAssembly/Reference/Value_types
16931+
/en-US/docs/WebAssembly/Reference/Types/externref /en-US/docs/WebAssembly/Reference/Value_types/externref
16932+
/en-US/docs/WebAssembly/Reference/Types/f32 /en-US/docs/WebAssembly/Reference/Value_types/f32
16933+
/en-US/docs/WebAssembly/Reference/Types/f64 /en-US/docs/WebAssembly/Reference/Value_types/f64
16934+
/en-US/docs/WebAssembly/Reference/Types/func /en-US/docs/WebAssembly/Reference/Definitions/types/func
16935+
/en-US/docs/WebAssembly/Reference/Types/funcref /en-US/docs/WebAssembly/Reference/Value_types/funcref
16936+
/en-US/docs/WebAssembly/Reference/Types/i32 /en-US/docs/WebAssembly/Reference/Value_types/i32
16937+
/en-US/docs/WebAssembly/Reference/Types/i64 /en-US/docs/WebAssembly/Reference/Value_types/i64
16938+
/en-US/docs/WebAssembly/Reference/Types/v128 /en-US/docs/WebAssembly/Reference/Value_types/v128
1692416939
/en-US/docs/WebAssembly/Reference/Variables/Local_get /en-US/docs/WebAssembly/Reference/Variables/local.get
1692516940
/en-US/docs/WebAssembly/Reference/Variables/Local_set /en-US/docs/WebAssembly/Reference/Variables/local.set
1692616941
/en-US/docs/WebAssembly/Reference/Variables/Local_tee /en-US/docs/WebAssembly/Reference/Variables/local.tee

files/en-us/glossary/binding/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ page-type: glossary-definition
55
sidebar: glossarysidebar
66
---
77

8-
In programming, a **binding** is an association of an {{glossary("identifier")}} with a value. Not all bindings are {{glossary("variable", "variables")}} — for example, function {{glossary("parameter", "parameters")}} and the binding created by the {{jsxref("Statements/try...catch", "catch (e)")}} block are not "variables" in the strict sense. In addition, some bindings are implicitly created by the language — for example, {{jsxref("Operators/this", "this")}} and [`new.target`](/en-US/docs/Web/JavaScript/Reference/Operators/new.target) in JavaScript.
8+
In programming, a **binding** is an association of an {{glossary("identifier")}} with a value. Not all bindings are {{glossary("variable", "variables")}} — for example, function {{glossary("parameter", "parameters")}} and the binding created by the {{jsxref("Statements/try...catch", "catch (e)")}} block are not "variables" in the strict sense. In addition, some bindings are implicitly created by the language — for example, {{jsxref("this")}} and [`new.target`](/en-US/docs/Web/JavaScript/Reference/Operators/new.target) in JavaScript.
99

1010
A binding is {{glossary("mutable")}} if it can be re-assigned, and {{glossary("immutable")}} otherwise; this does _not_ mean that the value it holds is immutable.
1111

files/en-us/learn_web_development/core/accessibility/html/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ We've already talked about the importance of proper semantics, and why we should
6363

6464
Out there on the web, the truth is that people do some very strange things with HTML markup. Often, misuse of HTML is because of legacy practices that haven't gone away yet, but sometimes it occurs because authors don't know any better. Whatever the case, you should replace bad code with good semantic markup wherever possible, in both static HTML pages and dynamically-generated HTML from [server-side](/en-US/docs/Learn_web_development/Extensions/Server-side) code or [client-side JavaScript frameworks](/en-US/docs/Learn_web_development/Core/Frameworks_libraries) such as React.
6565

66-
Sometimes you are not in a position to get rid of lousy markup — your pages might be dependant on server-side code or web/framework components that you have no control over, or you might have third-party content on your page (such as ad banners).
66+
Sometimes you are not in a position to get rid of lousy markup — your pages might be dependent on server-side code or web/framework components that you have no control over, or you might have third-party content on your page (such as ad banners).
6767

6868
The goal isn't "all or nothing"; every improvement you can make will help the cause of accessibility.
6969

files/en-us/learn_web_development/core/frameworks_libraries/angular_building/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ sidebar: learnsidebar
77

88
{{PreviousMenu("Learn_web_development/Core/Frameworks_libraries/Angular_filtering", "Learn_web_development/Core/Frameworks_libraries")}}
99

10+
> [!NOTE]
11+
> The MDN Angular articles are no longer being maintained and will be removed from the website in 3 months (by August 20, 2026). The content will be archived in the [MDN Museum](https://github.com/mdn/museum). See [this discussion](https://github.com/orgs/mdn/discussions/827) for further information.
12+
1013
This final Angular article covers how to build an app ready for production, and provides further resources for you to continue your learning journey.
1114

1215
<table>

files/en-us/learn_web_development/core/frameworks_libraries/angular_filtering/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ sidebar: learnsidebar
77

88
{{PreviousMenuNext("Learn_web_development/Core/Frameworks_libraries/Angular_item_component","Learn_web_development/Core/Frameworks_libraries/Angular_building", "Learn_web_development/Core/Frameworks_libraries")}}
99

10+
> [!NOTE]
11+
> The MDN Angular articles are no longer being maintained and will be removed from the website in 3 months (by August 20, 2026). The content will be archived in the [MDN Museum](https://github.com/mdn/museum). See [this discussion](https://github.com/orgs/mdn/discussions/827) for further information.
12+
1013
Now let's move on to adding functionality to allow users to filter their to-do items, so they can view active, completed, or all items.
1114

1215
<table>

files/en-us/learn_web_development/core/frameworks_libraries/angular_getting_started/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ sidebar: learnsidebar
77

88
{{NextMenu("Learn_web_development/Core/Frameworks_libraries/Angular_todo_list_beginning", "Learn_web_development/Core/Frameworks_libraries")}}
99

10+
> [!NOTE]
11+
> The MDN Angular articles are no longer being maintained and will be removed from the website in 3 months (by August 20, 2026). The content will be archived in the [MDN Museum](https://github.com/mdn/museum). See [this discussion](https://github.com/orgs/mdn/discussions/827) for further information.
12+
1013
It is now time to look at Google's Angular framework, another popular option that you'll come across often. In this article we look at what Angular has to offer, install the prerequisites and set up a sample app, and look at Angular's basic architecture.
1114

1215
> [!NOTE]

files/en-us/learn_web_development/core/frameworks_libraries/angular_item_component/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ sidebar: learnsidebar
77

88
{{PreviousMenuNext("Learn_web_development/Core/Frameworks_libraries/Angular_styling","Learn_web_development/Core/Frameworks_libraries/Angular_filtering", "Learn_web_development/Core/Frameworks_libraries")}}
99

10+
> [!NOTE]
11+
> The MDN Angular articles are no longer being maintained and will be removed from the website in 3 months (by August 20, 2026). The content will be archived in the [MDN Museum](https://github.com/mdn/museum). See [this discussion](https://github.com/orgs/mdn/discussions/827) for further information.
12+
1013
Components provide a way for you to organize your application. This article walks you through creating a component to handle the individual items in the list, and adding check, edit, and delete functionality. The Angular event model is covered here.
1114

1215
<table>

files/en-us/learn_web_development/core/frameworks_libraries/angular_styling/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ sidebar: learnsidebar
77

88
{{PreviousMenuNext("Learn_web_development/Core/Frameworks_libraries/Angular_todo_list_beginning","Learn_web_development/Core/Frameworks_libraries/Angular_item_component", "Learn_web_development/Core/Frameworks_libraries")}}
99

10+
> [!NOTE]
11+
> The MDN Angular articles are no longer being maintained and will be removed from the website in 3 months (by August 20, 2026). The content will be archived in the [MDN Museum](https://github.com/mdn/museum). See [this discussion](https://github.com/orgs/mdn/discussions/827) for further information.
12+
1013
Now that we've got our basic application structure set up and started displaying something useful, let's switch gears and spend an article looking at how Angular handles styling of applications.
1114

1215
<table>

files/en-us/learn_web_development/core/frameworks_libraries/angular_todo_list_beginning/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ sidebar: learnsidebar
77

88
{{PreviousMenuNext("Learn_web_development/Core/Frameworks_libraries/Angular_getting_started","Learn_web_development/Core/Frameworks_libraries/Angular_styling", "Learn_web_development/Core/Frameworks_libraries")}}
99

10+
> [!NOTE]
11+
> The MDN Angular articles are no longer being maintained and will be removed from the website in 3 months (by August 20, 2026). The content will be archived in the [MDN Museum](https://github.com/mdn/museum). See [this discussion](https://github.com/orgs/mdn/discussions/827) for further information.
12+
1013
At this point, we are ready to start creating our to-do list application using Angular. The finished application will display a list of to-do items and includes editing, deleting, and adding features. In this article you will get to know your application structure, and work up to displaying a basic list of to-do items.
1114

1215
<table>

files/en-us/learn_web_development/core/frameworks_libraries/ember_conditional_footer/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ sidebar: learnsidebar
77

88
{{PreviousMenuNext("Learn_web_development/Core/Frameworks_libraries/Ember_interactivity_events_state","Learn_web_development/Core/Frameworks_libraries/Ember_routing", "Learn_web_development/Core/Frameworks_libraries")}}
99

10+
> [!NOTE]
11+
> The MDN Ember articles are no longer being maintained and will be removed from the website in 3 months (by August 20, 2026). The content will be archived in the [MDN Museum](https://github.com/mdn/museum). See [this discussion](https://github.com/orgs/mdn/discussions/827) for further information.
12+
1013
Now it's time to start tackling the footer functionality in our app. Here we'll get the todo counter to update to show the correct number of todos still to complete, and correctly apply styling to completed todos (i.e., where the checkbox has been checked). We'll also wire up our "Clear completed" button. Along the way, we'll learn about using conditional rendering in our templates.
1114

1215
<table>

0 commit comments

Comments
 (0)